this post was submitted on 31 Aug 2024
14 points (100.0% liked)

Lemmy Support

4631 readers
36 users here now

Support / questions about Lemmy.

Matrix Space: #lemmy-space

founded 5 years ago
MODERATORS
 

I believe this used to work with e.g. something like https://lemmy.ml/post/[email protected] (assuming federation works and is current and all that).

This URL format no longer seems to work, is there a new/different endpoint to achieve the same?

I've found that I can use https://feddit.org/post/2401677 as a search term on https://lemmy.ml/search but putting together the appropriate URL (https://lemmy.ml/search?q=https%3A%2F%2Ffeddit.org%2Fpost%2F2401677&type=All&listingType=All&page=1&sort=TopAll) with a bookmarklet does not quite work - it comes up showing "no results", but I can click on "Search" again without changing anything and the same page / very same URL loads again with the post I'm looking for as the only search result. This link in this post also shows this exact behavior for me.

Is there any convenient way at all to achieve this - something I can click once, like a bookmarklet?

For reference, here's my half-working one:

javascript:(function() {const myInst="https://lemmy.ml/";let currUrl=window.location.toString();let newUrl=myInst+"search?q="+encodeURIComponent(currUrl)+"&type=All&listingType=All&page=1&sort=TopAll";window.location=newUrl;})()
top 4 comments
sorted by: hot top controversial new old
[–] [email protected] 4 points 2 weeks ago

I think GET /api/v3/resolve_object should work:

curl --url-query q=https://feddit.org/post/2401677 \
    https://lemmy.ml/api/v3/resolve_object \
    | jq .

(note that the value of q is url-encoded by --url-query)

[–] [email protected] 3 points 2 weeks ago (1 children)
[–] [email protected] 1 points 1 week ago

That script works very well with violentmonkey. But not with greasymonkey.

[–] Die4Ever 2 points 2 weeks ago

you might need this feature before it can be done easily https://github.com/LemmyNet/lemmy/issues/2987