我正在尝试使用 Yoda speak api。这是我的小提琴:
http://jsfiddle.net/Dansker/tdhnmmye/
$.ajax({ url: 'https://yoda.p.mashape.com/yoda', // The URL to the API. You can get this by clicking on "Show CURL example" from an API profile type: 'GET', // The HTTP Method data: {sentence: $("#boxArea").val()}, // Additional parameters here datatype: 'json', success: function (data) { alert(data); }, error: function (err) { alert(err); }, beforeSend: function (xhr) { xhr.setRequestHeader("X-Mashape-Authorization", "<RvyROurVRvmshRzDcAtXABdytvkDp1MtroWjsnXo8Dcs9Dq6SB>"); // Enter here your Mashape key } });});});
我认为代码一切正常,但我不断收到 403 错误,说我的密钥不起作用。我一直在重置我的密钥,但它一直说它不起作用。是钥匙还是别的什么?“尤达说话”也会显示为警报吗?