Is there something I’m missing or is my browser just not liking me today?
Thanks!
Edit: CORS error in question is: Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://users.roblox.com/v1/usernames/users/. (Reason: CORS request did not succeed). Status code: (null)
Have you found a solution yet? I’m running into the same error, and the annoying part is, only Roblox’s apis are doing it. I have no problem using other non roblox apis.
I encountered this issue yesterday. What I did as a solution was I made a server (using express) and just basically made a proxy which would do the requests on the express server and respond back with the results and made sure to set Access-Control-Allow-Origin to * in the response headers. (Example below.)