所以我正在用food2fork api做一些測試。爲什麼我得到404禁止使用JSON P api?
我似乎正在404禁止。 已經找到並找不到任何有效的工作。 http://food2fork.com/about/api 代碼如下
$(document).ready(function() {
$("#button").click(function(event) {
event.preventDefault();
var searchTerm = $("#input").val();
showResults(searchTerm);
});
function showResults(searchTerm) {
$.ajax({
key: "xxxx",///api key
type: "GET",
dataType: 'jsonp',
url: "http://food2fork.com/api/search",
q: searchTerm,
success: function (data) {
alert('success');
}
});
}
});
我得到這個是Chrome瀏覽器控制檯 GET http://food2fork.com/api/search?callback=jQuery21404141964341979474_1445240276656&_=1445240276657 – MackenzieAbby
403禁止沒有? – Omidam81
您需要在網站上註冊,然後獲取api密鑰,然後使用api鍵獲取搜索結果http://food2fork.com/about/api – Omidam81