diff --git a/index.html b/index.html index 52130c0..c395796 100644 --- a/index.html +++ b/index.html @@ -246,6 +246,30 @@
Aside from the self-link to the associated actor, resolving a WebFinger query may expose some other links of potential interest. The following link relations are currently common among WebFinger implementers:
+http://webfinger.net/rel/profile-page
(for quickly getting the HTML profile page of a user without resolving their actor document and checking for the url
)http://webfinger.net/rel/avatar
(for quickly getting the avatar of a user without resolving their actor document and checking for the icon
)The following link relations are less common, but offer useful information to ActivityPub implementers:
+http://ostatus.org/schema/1.0/subscribe
(used to power features like Mastodon's remote follow buttons)http://schemas.google.com/g/2010#updates-from
(used by some implementations to link to an Atom feed)feed
(used by some implementations to link to one or more feeds; feeds can be disambiguated by checking type
and/or title
properties of the link)http://a9.com/-/spec/opensearch/1.1/
(for custom search bars)Also uncommon but supported by at least one implementation (Wordpress) is the ability to query non-actor, non-user resources via WebFinger. The following link relations are exposed:
+shortlink
author
alternate
license
canonical
webmention
Using WebFinger can provide proof of existence of an associated actor document, as well as make it easier to discover that associated actor document; following this, an actor's inbox can be likewise discovered, and spam or other unwanted messages can be delivered to that actor's inbox. It may be desirable for some systems to not publicly expose an actor's existence and instead rely on the user manually entering their actor's HTTPS URI, or maintaining a "contact list" of bookmarked actors or resources. For such systems, the use of WebFinger is not advisable.