を使用して、これを変換することができ、このお試しください:この
....
data:data,
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
....
にしようとした後でない場合
var data = {
grant_type :'authorization_code',
client_id :'CLIENT_ID',
client_secret :'SECRET_KEY',
redirect_uri :'http://localhost:9999&code=AUTH_CODE'
};
// Simple GET request example:
$http({
method: 'GET',//or POST
url: 'https://www.twitchalerts.com/api/v1.0/token',
data:data,
}).then(function successCallback(response) {
// this callback will be called asynchronously
// when the response is available
}, function errorCallback(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
});
を
詳細about $ http https://docs.angularjs.org/api/ng/service/ $ http
'$ http'コードはどこで試されましたか?あなたのエラーハンドラはあなたに何を伝えますか?要求を行おうとするとブラウザコンソールに何が表示されますか? – charlietfl
クライアントの秘密鍵が入っているということは、おそらくブラウザであなたの資格情報を公開することを意味するので、おそらくajaxでこれを行うことができないことを示唆しています。 – charlietfl