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;})()
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
)You might want to have a look at this: https://greasyfork.org/en/scripts/469273-lemmy-universal-link-switcher
https://gitlab.com/azzurite/lemmy-universal-link-switcher
Maybe it can help you
That script works very well with violentmonkey. But not with greasymonkey.
Violentmonkey is better anyway
you might need this feature before it can be done easily https://github.com/LemmyNet/lemmy/issues/2987