我正在尝试使用dropbox oauth 2.0授权我的应用,但却遇到了Cross origin问题。我向https://www.dropbox.com/1/oauth2/authorize提出了GET请求 使用 response_type :'code'和 client_id ,但不断遇到跨域问题。
直接在浏览器中使用此“https://www.dropbox.com/1/oauth2/authorizeclient_id=CLIENT_ID&response_type=code”时,我会按预期重定向到Dropbox授权页面。
我的代码中遗漏了什么吗?
答案 0 :(得分:0)
/authorize page(https://www.dropbox.com/1/oauth2/authorize..。)只是用户应在其浏览器中与之互动的网页。它不是API端点,因此您不应该尝试以编程方式调用它。
如果您正在实施OAuth 2应用授权流程,那么此博文可能会有用:
https://blogs.dropbox.com/developers/2013/07/using-oauth-2-0-with-the-core-api/