0
該代碼該怎麼辦?據我瞭解,它應該重定向我的請求,但我只會得到一個錯誤。303響應代碼不起作用(Stripe與Angular.js連接)
錯誤,我得到
:8100 /#/ stripeCallback? scope = read_write & code = ac_9JHtmTB7Y5cJQprWgaKPm1A6QLCbceQ8:1 XMLHttpRequest無法加載https://connect.stripe.com/oauth/token。預檢的響應無效(重定向)
這裏是角度http請求我正在獲取用戶的條紋代碼後。現在使用這個請求我應該驗證它。
$http({
method: 'POST',
url: "https://connect.stripe.com/oauth/token",
headers: {
'Access-Control-Allow-Origin': '*',
'Content-Type': 'application/json;charset=UTF-8'
},
data: {
grant_type: "authorization_code",
code: stripeCode,
client_secret: "client_secret"
}
}).then(function (response) {
console.log(response);
}, function (response) {
console.log("Error -> ");
console.log(response);
});
這裏有什麼問題我做錯了什麼?
這需要通過服務器完成。祕密鑰匙的要點是保密 – charlietfl