使用jquery.post()从Pocket API检索数据时遇到问题

时间:2014-09-09 19:39:45

标签: javascript jquery ajax post pocket

我尝试使用Pocket API从我的Pocket帐户检索数据,方法是使用jQuery post函数访问它。我已经获得了使用者密钥和访问令牌,当我执行以下代码时,我得到了一个解析错误......但是数据在Firebug中以JSON格式显示。

var myPost = $.post("https://getpocket.com/v3/get",
    {   "consumer_key": "<<consumer key here>>",
        "access_token": "<<access token here>>",
        "count": "3",
        "detailType": "simple"
    },function(data) {
        return data
    },
    "jsonp");
myPost.done(function( msg ) {
    console.log(myPost)
    alert(msg);

});
myPost.fail(function( jqXHR, textStatus ) {
    console.log(jqXHR)
    alert( "Request failed: " + textStatus );
});

如果我在&#34; jsonp&#34;上更改了帖子通话中的dataType到&#34; json&#34;我没有得到解析错误,而是得到一个通用错误(字面意思只是#34;错误&#34;),Firebug中的响应选项卡中没有返回任何内容。

尝试使用jQuery.ajax()执行此调用也失败,产生错误400.

var something = $.ajax({
    "accepts": 'application/json',
    "type": 'POST',
    "url": "https://getpocket.com/v3/get",
    "contentType": 'application/json; charset=UTF8',
    "data": {"consumer_key": "<<insert consumer key here>>",
             "access_token": "<<insert access token here>>",
             "count": "3",
             "detailType": "simple"},
    "dataType": 'json',
    "success": ""
 });

好像我很接近使用$ .post()但是如何清除该错误以便我可以获得实际的响应数据?

0 个答案:

没有答案