我无法在产品/开发环境中向LinkedIn API发出任何请求,但是如果我在运行终端的localhost
和chrome.exe --user-data-dir="C:/Chrome dev session" --disable-web-security
中运行我的应用程序,一切正常
我尝试过CORS网络商店插件,但还是一样
axios
.post(
"https://www.linkedin.com/oauth/v2/accessToken",
querystring.stringify({
client_id: "*************",
grant_type: "authorization_code",
code: localStorage.getItem("AccessCode"),
redirect_uri: "http://localhost:4000/callback",
client_secret: "*************"
})
)
.then(response => {
let token = response.data.access_token;
});
我是否需要将标头发送到axios
标头,例如
headers: {
'Access-Control-Allow-Origin': '*',
'Content-Type': 'application/json',
}
吗?
提前谢谢!