我正在尝试使用Viralheat 的 API使用 jQuery 进行情绪分析。
1.当我在浏览器的地址栏中输入这个,就可以了:
https://app.viralheat.com/social/api/sentiment?api_key=1234&text=Schindler%27s%20List
它显示:
{"status":403,"error":"API Key not registered"}
2.使用这些代码行,网页显示错误,我想它运行到同源策略:
$.ajax({
type: 'get',
url: "https://app.viralheat.com/social/api/sentiment?api_key=1234&text=Schindler's List",
success: function(data){alert(data);},
error: function(){alert("error");}
});
3.我callback=?
在url中加a,dataType: 'json',
使用firebug,可以看到和场景1一样的结果{"status":403,"error":"API Key not registered"}
,但是网页还是报错,出现错误:SyntaxError: invalid label
$.ajax({
type: 'get',
dataType: 'json',
url: "https://app.viralheat.com/social/api/sentiment?api_key=1234&text=Schindler's List&callback=?",
success: function(data){alert(data);},
error: function(){alert("error");}
});
我该如何解决这个问题?