-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow verification via //link[@rel='me'] in feed's website link #16
Comments
I'm not familiar with |
The ideal behavior is that the service returning a Website link in a profile has verified that the HTML at the URL contains a That is, if {
"@context": [
"https://www.w3.org/ns/activitystreams",
"https://w3id.org/security/v1"
],
"…",
"attachment": [
{
"type": "PropertyValue",
"name": "Website",
"value": "<a href='https://codeandsupply.co/jobs' target='_blank' rel='nofollow noopener noreferrer me' translate='no'>https://codeandsupply.co/jobs</a>"
}
]
} then the HTML or HTTP headers returned in <link href='https://rss-parrot.net/@codeandsupply.co.jobs' rel='me'>
<link href='https://rss-parrot.net/web/feeds/codeandsupply.co.jobs' rel='me'>
<link href='https://rss-parrot.net/u/codeandsupply.co.jobs' rel='me'> and then you can show something on the page that indicates that the target link has been verified. |
To be more specific, this would actually be visible on https://rss-parrot.net/web/feeds/codeandsupply.co.jobs as something like this mockup: with this simple HTML: <p
<span class="label">Site URL: </span>
<a href="https://codeandsupply.co/jobs">codeandsupply.co/jobs</a>
<span class="verified" title="verified through link tags">✅</span>
</p> |
Got it, thanks! Tagging this as an improvement for later. |
The short storyTry using ... although admittedly ...This is different from what this issue is actually requesting (RSS Parrot itself verifying the link to show verification status on its own pages), so this may be irrelevant to the person who created issue. However, by its very nature content in RSS Parrot is in one sense always verified because it gets them from the feed provided by the website. If what one wants is some verification that a bridge for some RSS feed is an "official" bridge, I would expect verification by Mastodon servers would be more desirable as it exposes the verification status to most users; verification status only on RSS Parrot's own pages won't be terribly useful for this purpose. The long storyI wanted a verified link for my own account, and after a substantial amount of digging, I don't think anything absolutely needs to be changed in RSS Parrot. Long story short, verified profile links in Mastodon servers are verified by each Mastodon server which reads the profile, not the Mastodon or ActivityPub server from which the profile originates.1 RSS Parrot is not responsible for doing the verification. However, you may need to use the correct URL as the "me" link on your web page. I had initially used
I am not totally sure about this, since I don't use the URL returned by WebFinger for my main Mastodon account as the "me" link, and it still was verified on my Mastodon server. I suspect this is the case because the The only remaining issue is to make a Mastodon server verify a profile link it had already determined not to be verified. The surest way is to publish an Footnotes
|
Thanks for building this, it's great!
I've got the feed available at https://codeandsupply.co/jobs birb'd via
@[email protected]
. I've added//link[@rel='me']
tags to the site to indicate that RSS-parrot's profile is verified, like how other Mastodon and fediverse systems allow.It doesn't look like RSS-parrot supports this right now. It'd be cool if it did.
The text was updated successfully, but these errors were encountered: