@[email protected] to [email protected]English • 2 years agoThe secret life of .well-knownishan.pagemessage-square9fedilinkarrow-up124arrow-down10file-text
arrow-up124arrow-down1external-linkThe secret life of .well-knownishan.page@[email protected] to [email protected]English • 2 years agomessage-square9fedilinkfile-text
minus-squaresnoweMlinkfedilinkEnglish1•2 years agoThat is really interesting. Does anyone have an example of what a web finger might contain? It says avatar data but I’m interested in how sites use it.
minus-square@[email protected]OPlinkfedilinkEnglish1•2 years agoHey Thanks for reading, and I’m glad you found it interesting. To my understanding, Webfinger provides a standard API for discovering the user profile details no matter the software running on the node. For example, $ curl https://programming.dev/.well-known/webfinger\?resource\=acct:[email protected] | jq { "subject": "acct:[email protected]", "links": [ { "rel": "http://webfinger.net/rel/profile-page", "type": "text/html", "href": "https://programming.dev/u/snowe" }, { "rel": "self", "type": "application/activity+json", "href": "https://programming.dev/u/snowe", "properties": { "https://www.w3.org/ns/activitystreams#type": "Person" } } ] }
That is really interesting. Does anyone have an example of what a web finger might contain? It says avatar data but I’m interested in how sites use it.
Hey Thanks for reading, and I’m glad you found it interesting.
To my understanding, Webfinger provides a standard API for discovering the user profile details no matter the software running on the node.
For example,
$ curl https://programming.dev/.well-known/webfinger\?resource\=acct:[email protected] | jq { "subject": "acct:[email protected]", "links": [ { "rel": "http://webfinger.net/rel/profile-page", "type": "text/html", "href": "https://programming.dev/u/snowe" }, { "rel": "self", "type": "application/activity+json", "href": "https://programming.dev/u/snowe", "properties": { "https://www.w3.org/ns/activitystreams#type": "Person" } } ] }