this post was submitted on 13 Jun 2023
17 points (100.0% liked)

Lemmy.World Announcements

28916 readers
6 users here now

This Community is intended for posts about the Lemmy.world server by the admins.

Follow us for server news ๐Ÿ˜

Outages ๐Ÿ”ฅ

https://status.lemmy.world

For support with issues at Lemmy.world, go to the Lemmy.world Support community.

Support e-mail

Any support requests are best sent to info@lemmy.world e-mail.

Report contact

Donations ๐Ÿ’—

If you would like to make a donation to support the cost of running this platform, please do so at the following donation URLs.

If you can, please use / switch to Ko-Fi, it has the lowest fees for us

Ko-Fi (Donate)

Bunq (Donate)

Open Collective backers and sponsors

Patreon

Join the team

founded 1 year ago
MODERATORS
 

https://lemmy.ml/api/v3 works for lemmy.ml, but when I try it with lemmy.world it gives bad request, any help?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] Yoru@lemmy.world 3 points 1 year ago (3 children)

hmm, interesting. It works when I do it in my node environment, but the moment the browser tries to make the request it fails.

[โ€“] damn@lemmy.fmhy.ml 6 points 1 year ago (1 children)

The error message tells you why it failed

[โ€“] Yoru@lemmy.world 1 points 1 year ago (1 children)

oh, it's because lemmy.world doesn't allow api requests from lemmy.ml, and vice-versa. Is it possible that there's a workaround?

[โ€“] ericjmorey@lemmy.world 1 points 1 year ago (1 children)

Make a bot account on the other server

[โ€“] Yoru@lemmy.world 1 points 1 year ago (1 children)

I'm making a bookmarklet to transfer followed communities from one instance to another

[โ€“] ericjmorey@lemmy.world 1 points 1 year ago* (last edited 1 year ago) (1 children)

Whoever would be using that bookmarklet would need to have accounts on both instances.

[โ€“] Yoru@lemmy.ml 1 points 1 year ago

that's not the issue unfortunately, websites usually don't allow api requests to be made from another website, I fixed it using this github repo

[โ€“] nickel@lemmy.world 5 points 1 year ago* (last edited 1 year ago) (1 children)

@Yoru@lemmy.ml - it has to do with CORS (says in the error message) - You generally can't make cross-origin requests in the browser unless it is explicitly allowed. This is purely a browser limitation, which is why it works in your node environment. But if you open the console on any random website and try to call fetch() to that API, it's going to fail on any site other than lemmy.world.

[โ€“] Yoru@lemmy.world 2 points 1 year ago (1 children)

yeah that's what I observed after a few more trying, is there a possible workaround to this?

[โ€“] nickel@lemmy.world 3 points 1 year ago

Anything you do cross-origin will have to be done in a server-like environment instead of in the browser.

[โ€“] miked@lemmy.world 1 points 1 year ago

Works for me on Firefox