London Escorts sunderland escorts 1v1.lol unblocked yohoho 76 https://www.symbaloo.com/mix/yohoho?lang=EN yohoho https://www.symbaloo.com/mix/agariounblockedpvp https://yohoho-io.app/ https://www.symbaloo.com/mix/agariounblockedschool1?lang=EN
0.3 C
New York
Thursday, January 30, 2025

Use your individual consumer @ area for Mastodon discoverability with the WebFinger Protocol with out internet hosting a server


Mastodon is a free, open-source social networking service that’s decentralized and distributed. It was created in 2016 as a substitute for centralized social media platforms reminiscent of Twitter and Fb.

One of many key options of Mastodon is the usage of the WebFinger protocol, which permits customers to find and entry details about different customers on the Mastodon community. WebFinger is an easy HTTP-based protocol that allows a consumer to find details about different customers or assets on the web by utilizing their e mail deal with or different figuring out info. The WebFinger protocol is vital for Mastodon as a result of it permits customers to seek out and comply with one another on the community, no matter the place they’re hosted.

WebFinger makes use of a “well-known” path construction when calling an area. It’s possible you’ll be conversant in the robots.txt conference. All of us simply agree that robots.txt will sit on the prime path of everybody’s area.

The WebFinger protocol is an easy HTTP-based protocol that allows a consumer or search to find details about different customers or assets on the web by utilizing their e mail deal with or different figuring out info. My is first identify finally identify .com, so…my private WebFinger API endpoint is right here https://www.hanselman.com/.well-known/webfinger

The thought is that…

  1. A consumer sends a WebFinger request to a server, utilizing the e-mail deal with or different figuring out info of the consumer or useful resource they’re attempting to find.

  2. The server seems up the requested info in its database and returns a JSON object containing the details about the consumer or useful resource. This JSON object is named a “useful resource descriptor.”

  3. The consumer’s consumer receives the useful resource descriptor and shows the knowledge to the consumer.

The useful resource descriptor accommodates numerous varieties of details about the consumer or useful resource, reminiscent of their identify, profile image, and hyperlinks to their social media accounts or different on-line assets. It could possibly additionally embody different varieties of info, such because the consumer’s public key, which can be utilized to determine a safe reference to the consumer.

There’s a fantastic explainer right here as nicely. From that web page:

When somebody searches for you on Mastodon, your server can be queried for accounts utilizing an endpoint that appears like this:

GET https://${MASTODON_DOMAIN}/.well-known/webfinger?useful resource=acct:${MASTODON_USER}@${MASTODON_DOMAIN}

Be aware that Mastodon consumer names begin with @ so they’re @username@someserver.com. Identical to twiter could be @shanselman@twitter.com I might be @shanselman@hanselman.com now!

Searching for me with Mastodon

So maybe https://www.hanselman.com/.well-known/webfinger?useful resource=acct:FRED@HANSELMAN.COM

Mine returns

{
"topic":"acct:shanselman@hachyderm.io",
"aliases":
[
"https://hachyderm.io/@shanselman",
"https://hachyderm.io/users/shanselman"
],
"hyperlinks":
[
{
"rel":"http://webfinger.net/rel/profile-page",
"type":"text/html",
"href":"https://hachyderm.io/@shanselman"
},
{
"rel":"self",
"type":"application/activity+json",
"href":"https://hachyderm.io/users/shanselman"
},
{
"rel":"http://ostatus.org/schema/1.0/subscribe",
"template":"https://hachyderm.io/authorize_interaction?uri={uri}"
}
]
}

This file ought to be returned as a mime sort of software/jrd+json

My website is an ASP.NET Razor Pages website, so I simply did this in Startup.cs to map that well-known URL to a web page/route that returns the JSON wanted.

providers.AddRazorPages().AddRazorPagesOptions(choices =>
{
choices.Conventions.AddPageRoute("/robotstxt", "/Robots.Txt"); //i did this earlier than, not wanted
choices.Conventions.AddPageRoute("/webfinger", "/.well-known/webfinger");
choices.Conventions.AddPageRoute("/webfinger", "/.well-known/webfinger/{val?}");
});

then I made a webfinger.cshtml like this. Be aware I’ve to double escape the @@ websites as a result of it is Razor.

@web page
@{
Format = null;
this.Response.ContentType = "software/jrd+json";
}
{
"topic":"acct:shanselman@hachyderm.io",
"aliases":
[
"https://hachyderm.io/@@shanselman",
"https://hachyderm.io/users/shanselman"
],
"hyperlinks":
[
{
"rel":"http://webfinger.net/rel/profile-page",
"type":"text/html",
"href":"https://hachyderm.io/@@shanselman"
},
{
"rel":"self",
"type":"application/activity+json",
"href":"https://hachyderm.io/users/shanselman"
},
{
"rel":"http://ostatus.org/schema/1.0/subscribe",
"template":"https://hachyderm.io/authorize_interaction?uri={uri}"
}
]
}

This can be a static response, but when I used to be internet hosting pages for multiple particular person I would need to take within the url with the consumer’s identify, after which map it to their aliases and return these appropriately.

Even simpler, you possibly can simply use the JSON file of your individual Mastodon server’s webfinger response and SAVE IT as a static json file and replica it to your individual server!

So long as your server returns the appropriate JSON from that well-known URL then it will work.

So that is my template https://hachyderm.io/.well-known/webfinger?useful resource=acct:shanselman@hachyderm.io from the place I am hosted now.

If you wish to get began with Mastodon, begin right here. https://github.com/joyeusenoelle/GuideToMastodon/ it appears like Twitter circa 2007 besides it is not owned by anybody and is predicated on net requirements like ActivityPub.

Hope this helps!




About Scott

Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, marketing consultant, father, diabetic, and Microsoft worker. He’s a failed stand-up comedian, a cornrower, and a e book writer.

facebook
twitter
subscribe
About E-newsletter

Internet hosting By
Hosted in an Azure App Service










Related Articles

Social Media Auto Publish Powered By : XYZScripts.com