Created
December 18, 2023 20:46
-
-
Save evanp/d91ee06f08534d39f09de5f03cf87513 to your computer and use it in GitHub Desktop.
An example of reading a Wikipedia page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "https://www.w3.org/ns/activitystreams", | |
"type": "Read", | |
"actor": { | |
"id": "https://social.example/users/evanp", | |
"type": "Person", | |
"name": "Evan Prodromou" | |
}, | |
"object": { | |
"type": "Page", | |
"id": "https://activitypub.en.wikipedia.example/2023_United_Nations_Climate_Change_Conference", | |
"name": "2023 United Nations Climate Change Conference" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment