when publishing a comment to Facebook, Bridgy reports this URL (which is a 404)
/POST_ID/?comment_id=COMMENT_ID
Should be
/AUTHOR_ID/posts/POST_ID/?comment_id=COMMENT_ID
Looks like this is handled in a-u.Facebook.comment_url, and we just need to pass the post_author_id (parsed from base_url) here:
https://github.com/snarfed/activitystreams-unofficial/blob/master/facebook.py#L355
when publishing a comment to Facebook, Bridgy reports this URL (which is a 404)
/POST_ID/?comment_id=COMMENT_ID
Should be
/AUTHOR_ID/posts/POST_ID/?comment_id=COMMENT_ID
Looks like this is handled in
a-u.Facebook.comment_url, and we just need to pass thepost_author_id(parsed frombase_url) here:https://github.com/snarfed/activitystreams-unofficial/blob/master/facebook.py#L355