admin管理员组文章数量:1344206
I'm trying to upload an image to imgur with js (browser) and get a CORS error:
Access to XMLHttpRequest at '' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
But preflight request contains Access-Control-Allow-Origin
header:
The request itself:
What I'm missing? this is because access-control-allow-credentials
set to true
?
I'm trying to upload an image to imgur with js (browser) and get a CORS error:
Access to XMLHttpRequest at 'https://api.imgur./3/upload' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
But preflight request contains Access-Control-Allow-Origin
header:
The request itself:
What I'm missing? this is because access-control-allow-credentials
set to true
?
-
1
The screenshot clearly shows
access-control-allow-origin: *
but the error says it's not there. I suspect the error is referring to a different request. – Sidney Commented Apr 17, 2019 at 17:46 - Thanks, I added also a screenshot of the request itself. maybe I don't understand something with the CORS workflow. – Michael Commented Apr 17, 2019 at 17:50
- The request screenshot doesn't seem to include the response headers? – Sidney Commented Apr 17, 2019 at 17:54
- The browser blocks the response because of the CORS policy. – Michael Commented Apr 17, 2019 at 17:56
- 1 Since the preflight request succeeded with CORS headers, the browser should send the POST request. If the POST response doesn't have CORS headers, the browser disallows JavaScript from accessing the response. It should still show in the devtools though. What if you run the same request outside a browser? Maybe in Postman. Do you see CORS headers there? – Sidney Commented Apr 17, 2019 at 18:00
2 Answers
Reset to default 11The problem was with their API Docs :\
The URL is: https://api.imgur./3/image
and not https://api.imgur./3/upload
as said here: https://apidocs.imgur./#c85c9dfc-7487-4de2-9ecd-66f727cf3139
according to doc https://api.imgur./3/upload
doesnt have necessary
header ,
but on the right side ,the curl example use https://api.imgur./3/image
has Access-Control-Allow-Origin
header
and somehow they will check your referer, which means if you are in develop mode like webpack dev mode use localhost:8000
it will always return 429 too many request
exception
本文标签: javascriptUpload image to imgur failed because of corsStack Overflow
版权声明:本文标题:javascript - Upload image to imgur failed because of cors - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743738364a2530430.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论