-
Hi! I've installed ActivityPub on my site (https://cartoonbeats.com/), and it's working well. I can follow the whole site stream (aka "feed") by following However, I want to see how this works, and understand what routes / endpoints this plugin adds to my site.
It would be useful to have this info in docs somewhere. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @haszari 👋 The easiest way to debug the plugin, is by adding
This btw. shows that your setup is not perfect atm. you have enabled both, blog user and authors. In this case, all new posts will be published in the name of the author and the blog-user simply boosts that post. But one of your installed plugins seem to redirect the author URLs to the main URL. That means even if you can follow the blog-user, you won't see new posts (because the author is not accessible). (We need to make this clearer in the WordPress backend) To fix this issue, you should either
The endpoints that are added, are listed here: https://cartoonbeats.com/wp-json/activitypub/1.0 I hope this helps :) |
Beta Was this translation helpful? Give feedback.
Hi @haszari 👋
The easiest way to debug the plugin, is by adding
/activitypup
at the end of an URL. For example https://cartoonbeats.com/beats-reality-20231004/activitypub/ (for Post-URLs) or https://cartoonbeats.com/author/haszari/activitypub/ for authors. If that is not possible, you can try to call them with the Accept headerapplication/activity+json
This btw. shows that your setup is not perfect atm. you have enabled both, blog user and authors. In this case, all new posts will be published in the name of the author and the blog-user simply boosts that post. But one of your installed…