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

Lemmy.World Announcements

28916 readers
4 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 2 points 1 year ago (9 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.

[โ€“] nickel@lemmy.world 5 points 1 year ago* (last edited 1 year ago) (2 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 1 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.

load more comments (6 replies)