我正在尝试使用angularjs通过以下代码获取Clio API访问令牌。当我尝试执行此操作时,始终会出现CORS错误,并且不允许获取API令牌。这已在app.clio.com的飞行前请求调用中停止。 以下是代码中使用的AJAX配置。当我使用CORS插件时,它可以正常工作。有什么办法可以解决这个问题?
PS:我有一个有效的code
。
{
async: true,
url: 'https://app.clio.com/oauth/token',
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
"cache-control": "no-cache",
},
data: {
"client_id": 'XXX',
"client_secret": 'XXXX',
"redirect_uri": 'XX/callback',
"grant_type": "authorization_code",
"code": code
}
};