I know that servers communicate by POSTing to an inbox and outbox. But what's the URL for the inbox and outbox?
In ActivityPub, how do you get an inbox URL?
1.3k Views Asked by Evan Conrad At
1
There are 1 best solutions below
Related Questions in ACTIVITYPUB
- Inferring RSA algorithm from a publicKeyPem
- Mastodon Relays Seem to be Eternally Stuck on "Waiting for relay's approval"
- Activitypub & Mastodon, how to get an Actor?
- Why does Activity Pub make servers wrap "Note" objects into "Create" activities?
- Where are the “range” and “functional” aspects of ActivityPub properties defined?
- How is ActivityStreams's "to" field on Activities different from the "audience" field?
- How do I have two different routes with the same URL in two different packages in my meteor app?
- use System.Text.Json to serialize an Object as a single String conditionally
- In ActivityPub, how do you get an inbox URL?
- Inbox resolution for ActivityPub outbox delivery
- With ActivityPub, what is a valid and preferred way to export a Person with an Outbox?
- Can't find my user on my custom instance on search in mastodon
- Getting the outbox of a Mastodon profile using the activitystreams crate
- What is the relationship between OStatus, pump.io and ActivityPub?
Related Questions in WEBFINGER
- WebFinger library for PHP?
- Discover OpenID Connect Provider Issuer
- Logging in with WebFinger and OpenID
- How to use ADFS Webfinger Endpoint?
- In ActivityPub, how do you get an inbox URL?
- Can't find my user on my custom instance on search in mastodon
- What's the difference between LRDD discovery and Webfinger?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
How to get the inbox or outbox URL
The URL is whatever the implementing server says it is. So it's different for each ActivityPub server.
The inbox and outbox URL for an actor is defined in the JSON-LD document for an actor:
This also means that the inbox and outbox can be actor-specific, not just server specific.
How to get the actor JSON
Some ActivityPub sites like Mastodon make use of Webfinger to standardize a URL that can be used to get an actor's JSON-LD doc:
In this case, if you wanted to know the inbox for
[email protected], you would first query the webfinger:That would give you a JSON object like this:
With that
href: https://mastodon.technology/users/Flaque, you can get the JSON representation with:(Note the
.json!)That would then give you a full actor object, which would include the
inboxandoutbox: