私はそれを使用する方法を学習していますが、私のコードに何が間違っているかはわかりません。yelp api v3 javascriptアクセストークンを取得する方法
$.ajax({
dataType: "POST",
url: "https://api.yelp.com/oauth2/token",
grant_type: "client_credentials",
client_id: "my_client_id",
client_secret: "my_client_secret",
success: function(data,textStatus,jqXHR) {
console.log(data,textStatus,jqXHR);
}
});
my_client_idとmy_client_secretはyelpから取得されます。
XMLHttpRequest cannot load https://api.yelp.com/oauth2/token.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'null' is therefore not allowed access. The response had HTTP status code 404.
編集:
XMLHttpRequestをロードすることはできませんします。https:
が
yelpTokenURL = "https://api.yelp.com/oauth2/token?grant_type=client_credentials&client_id="
+ id + "&client_secret=" + secret;
jQuery.post(yelpTokenURL, function(){
console.log(data);
});
ガットエラーで再び試してみました// ... ませんブラウザでのエラーは、次のようになります「Access-Control-Allow-Origin」ヘッダーは、要求されたリソース上に存在します。したがって、原点「ヌル」はアクセスが許可されません。
、
ベスト –