Google Contacts API未返回输出

时间:2017-04-06 13:16:39

标签: javascript ajax contacts google-contacts

它工作正常,但昨天它开始给401.我尝试了Google contacts API 401 error RestClient::Unauthorized

// handles the click event, sends the query
function getSuccessOutput() {
    $.ajax({
        url:'https://www.google.com/m8/feeds/contacts/default/full?access_token=ya29.XXXXXXXWLNLPslUUOifL1pu63cGG_DAkEHeh-VjjOGBYzgJAp65-RRrIYmIbGnHiZ5VwC6KpBPYstaSEoBgXOaf0kmuPqIL_-RllkGJKPh1uqTCJoN4k1YZl7Jdp-A&alt=json&max-results=9999',
    dataType: "jsonp",
    cache: true,        
        complete: function (response) {
            $('#output').html(response.responseText);

        },
error: function(xhr, status, error) {
  //var err = eval("(" + xhr.responseText + ")");
  alert(error.Message);
}
    });
    return false;
}

1 个答案:

答案 0 :(得分:1)

  • 我不认为dataType是正确的。 JSONP URL必须有 "回调" JS函数的参数

    看看: https://en.wikipedia.org/wiki/JSONP

  • 还有一个" access_token"在你的URL参数有时 某些服务只能使用一次。这取决于端点 你正在谈论以及他们如何处理他们的身份验证过程。