如何通过JavaScript管理Google帐户的联系人?
作者:互联网
我正在尝试通过JavaScript程序管理Google帐户联系人.当我尝试通过JavaScript删除联系人时,会出现此错误:“网络错误:405不允许的方法”.
这是我的代码:
function deleteContacts() {
$.ajax({
type: 'DELETE',
url: 'https://www.google.com/m8/feeds/contacts/default/full/{client_Id}?access_token=' + tokenId,
headers: {
'If-Match': '*',
'Gdata-version': '3.0'
},
dataType: 'jsonp',
data: {},
success: function (data) {
console.log("response: " + data)
}
});
}
请帮助我,这可以通过JavaScript管理Google帐户的联系人吗?如果真的有可能请告诉我管理Google帐户联系人的所有可能性….
有没有其他JavaScript API可用?
有替代解决方案吗?
我知道谷歌已经在java,PHP,节点中列出了解决方案,我在Nodejs中编写服务器代码,但似乎是alpha版本中NodeJs的谷歌客户端代码,不知道管理联系人有多强大…
解决方法:
使用google client api for javascript,Authenticate,getToken,然后使用Request,然后执行它.根据您的需要传递方法和网址.出于删除目的,传递这些是它的输入:
method : 'DELETE',
url : '/m8/feeds/contacts/default/full/<friend id to delete>'
标签:javascript,jquery,api,google-contacts-api 来源: https://codeday.me/bug/20191007/1863738.html