开发者 |
pfefferle
mediaformat akirk automattic mattwiebe jeherve nuriapena cavalierlife |
---|---|
更新时间 | 2024年10月27日 02:45 |
PHP版本: | 7.0 及以上 |
WordPress版本: | 6.6 |
版权: | MIT |
版权网址: | 版权信息 |
example.com
, then the blog-wide profile can be found at @example.com@example.com
, and authors like Jane and Bob would have their individual profiles at @jane@example.com
and @bobz@example.com
, respectively.
An example: I give you my Mastodon profile name: @pfefferle@mastodon.social
. You search, see my profile, and hit follow. Now, any post I make appears in your Home feed. Similarly, with the ActivityPub plugin, you can find and follow Jane's profile at @jane@example.com
.
Once you follow Jane's @jane@example.com
profile, any blog post she crafts on example.com
will land in your Home feed. Simultaneously, by following the blog-wide profile @example.com@example.com
, you'll receive updates from all authors.
Note: If no one follows your author or blog instance, your posts remain unseen. The simplest method to verify the plugin's operation is by following your profile. If you possess a Mastodon profile, initiate by following your new one.
The plugin works with the following tested federated platforms, but there may be more that it works with as well:
@your_username@example.com
or @example.com@example.com
, so that is what you’ll search for.activitypub
" into the Search Plugins box.wp-content/plugins
folder in your WordPress directory online.This plugin connects your WordPress blog to popular social platforms like Mastodon, making your posts more accessible to a wider audience. Once installed, your blog can be followed by users on these platforms, allowing them to receive your new posts in their feeds.
Implemented:
ActivityPub for WordPress extends WordPress with some Fediverse features, but it does not compete with platforms like Friendica or Mastodon. If you want to run a decentralized social network, please use Mastodon or GNU social.
In order for webfinger to work, it must be mapped to the root directory of the URL on which your blog resides. Apache Add the following to the .htaccess file in the root directory: RedirectMatch "^\/.well-known/(webfinger|nodeinfo|x-nodeinfo2)(.*)$" /blog/.well-known/$1$2 Where 'blog' is the path to the subdirectory at which your blog resides. Nginx Add the following to the site.conf in sites-available: location ~* /.well-known { allow all; try_files $uri $uri/ /blog/?$args; } Where 'blog' is the path to the subdirectory at which your blog resides.
If you are running your blog in a subdirectory, but have a different wp_siteurl, you don't need the redirect, because the index.php will take care of that.
If you are using a reverse proxy with Apache to run your host you may encounter that you are unable to have followers join the blog. This will occur because the proxy system rewrites the host headers to be the internal DNS name of your server, which the plugin then uses to attempt to sign the replies. The remote site attempting to follow your users is expecting the public DNS name on the replies. In these cases you will need to use the 'ProxyPreserveHost On' directive to ensure the external host name is passed to your internal host.
If you are using SSL between the proxy and internal host you may also need to SSLProxyCheckPeerName off
if your internal host can not answer with the correct SSL name. This may present a security issue in some environments.
The plugin uses PHP Constants to enable, disable or change its default behaviour. Please use them with caution and only if you know what you are doing.
ACTIVITYPUB_REST_NAMESPACE
- Change the default Namespace of the REST endpoint. Default: activitypub/1.0
.ACTIVITYPUB_EXCERPT_LENGTH
- Change the length of the Excerpt. Default: 400
.ACTIVITYPUB_SHOW_PLUGIN_RECOMMENDATIONS
- show plugin recommendations in the ActivityPub settings. Default: true
.ACTIVITYPUB_MAX_IMAGE_ATTACHMENTS
- Change the number of attachments, that should be federated. Default: 3
.ACTIVITYPUB_HASHTAGS_REGEXP
- Change the default regex to detect hashtext in a text. Default: (?:(?<=\s)|(?<=<p>)|(?<=<br>)|^)#([A-Za-z0-9_]+)(?:(?=\s|[[:punct:]]|$))
.ACTIVITYPUB_USERNAME_REGEXP
- Change the default regex to detect @-replies in a text. Default: (?:([A-Za-z0-9\._-]+)@((?:[A-Za-z0-9_-]+\.)+[A-Za-z]+))
.ACTIVITYPUB_URL_REGEXP
- Change the default regex to detect urls in a text. Default: (www.|http:|https:)+[^\s]+[\w\/]
.ACTIVITYPUB_CUSTOM_POST_CONTENT
- Change the default template for Activities. Default: <strong>[ap_title]</strong>\n\n[ap_content]\n\n[ap_hashtags]\n\n[ap_shortlink]
.ACTIVITYPUB_AUTHORIZED_FETCH
- Enable AUTHORIZED_FETCH. Default: false
.ACTIVITYPUB_DISABLE_REWRITES
- Disable auto generation of mod_rewrite
rules. Default: false
.ACTIVITYPUB_DISABLE_INCOMING_INTERACTIONS
- Block incoming replies/comments/likes. Default: false
.ACTIVITYPUB_DISABLE_OUTGOING_INTERACTIONS
- Disable outgoing replies/comments/likes. Default: false
.ACTIVITYPUB_SHARED_INBOX_FEATURE
- Enable the shared inbox. Default: false
.ACTIVITYPUB_SEND_VARY_HEADER
- Enable to send the Vary: Accept
header. Default: false
.If you have activated the blog user, you will find the list of his followers in the settings under /wp-admin/options-general.php?page=activitypub&tab=followers
.
The followers of a user can be found in the menu under "Users" -> "Followers" or under wp-admin/users.php?page=activitypub-followers-list
.
For reasons of data protection, it is not possible to see the followers of other users.
title
attribute to link headers for better readabilityWP_Error
summary
, because it seems that Mastodon has issues with itArticle
Object-Type as defaultExcerpt
for Podcast EpisodesLike
and Announce
(Boost) handlerUndo
for Likes
and Announces
Likes
and Announces
menu_order
to ap_extrafield
so that user can decide in with order they will be displayedactivitypub_user_description
to activitypub_description
get_sample_permalink