this post was submitted on 05 Feb 2024
14 points (100.0% liked)

Lemmy App Development

698 readers
1 users here now

A place for Lemmy builders to chat about building apps, clients, tools and bots for the Lemmy platform.

On-Topic:

Off-Topic:

founded 1 year ago
MODERATORS
 

I recall someone mentioning a way to do it through an ActivityPub “resolve object” endpoint (or something like that) but I couldn’t find anything on it again. #1101 will solve this, but how are you guys handling this in the meantime?

you are viewing a single comment's thread
view the rest of the comments
[–] nmtake@lemm.ee 2 points 7 months ago* (last edited 7 months ago) (1 children)

As you said, GET /resolove_object (https://join-lemmy.org/api/interfaces/ResolveObject.html) may work:

$ post_id=9589178
$ curl 'https://lemm.ee/api/v3/resolve_object?q=https%3A%2F%2Fprogramming.dev%2Fpost%2F${post_id}' | jq .post.post.id
22873872
$ curl 'https://lemm.ee/api/v3/post?id=22873872' | jq '.post_view.post | [.id, .name]'
[
  22873872,
  "How do you get the url or id of the same post on a different instance?"
]
[–] silas@programming.dev 2 points 7 months ago (1 children)

Thanks! Exactly what I was looking for, I didn’t look at the docs thoroughly enough it seems

[–] nmtake@lemm.ee 2 points 7 months ago

Glad it worked. I didn't know the endpoint before reading your post.