-
Notifications
You must be signed in to change notification settings - Fork 0
Description
#32 was resolved incorrectly by 47fd731 which provides incorrect information:
Per #32 (comment)
fediverse:creatorhas nothing to do with the OpenGraph Protocol.propertyis not "non-standard"; it comes from RDFa.fediverse:creatoruses<meta name=, not<meta property=(because it is not OGP and it is not RDFa -- the "false prefix"fediverse:does not expand to anything.)
solution
Change "OpenGraph Protocol" to "HTML <meta> element"
Rename and rework 4.3.2 https://swicg.github.io/activitypub-html-discovery/#opengraph-protocol to be about HTML meta tags, which can include OGP and Mastodon.
Fix property "non-standard" -> "RDFa"
Change the incorrect note about "non-standard" property to instead say that property comes from RDFa:
In this example, the article:author property is the author of the document. (Note that OpenGraph Protocol uses the
non-standardRDFapropertyattribute for metadata.)
Fix fediverse:creator example
Incorrect:
<meta property="fediverse:creator" content="@[email protected]" />
Correct:
<meta name="fediverse:creator" content="@[email protected]" />
In this example, the
fediverse:creatorpropertymetadata tag'scontentis theWebfinger IDacct:URI of the creator of the video, but prefixed with the@symbol instead of withacct:. TheWebfinger IDvalue ofcontentcan be transformed into anacct:URI and used with WebFinger to find the ActivityPub object corresponding to the creator.