我正在尝试使用它的 api 从 Pinboard.in 获取标签列表,但是在执行 fetch 方法时出现错误。
代码是:
function getTags(user, password) {
var url ="https://"+user+":"+password+"@api.pinboard.in/v1/tags/get"
var response=httpGet(url);
return response;
}
function httpGet(theUrl)
{
var options = { "contentType" : "application/xml; charset=utf-8"} ;
var response = UrlFetchApp.fetch(theUrl,options);
return response.getContentText();
}
我做错了什么?