使用ajax访问delicious api时出现问题
我正在使用以下 jQuery 代码来尝试访问美味的 api,但它不起作用。如果我直接在浏览器中访问 api url,它会按预期返回 xml,因此 url 是正确的。
有人知道发生了什么吗?可能是 https,但 jQuery 文档没有明确禁止这样做。
$(document).ready(function(){
$.ajax({
type: 'GET',
dataType: 'xml',
url:"https://api.del.icio.us/v1/posts/dates",
success: function(response) {
console.log(response);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
console.log(textStatus);
console.log(errorThrown);
}
});
});
编辑:
我收到“数据为空”错误,如果我设置 data: '',这种情况仍然会发生,并且在第一次尝试访问浏览器中的页面时,系统会提示我输入用户名和密码,这似乎是存储的我在头部包含一个带有 href="https://api.del.icio.us/v1/posts/dates" 的标签,它可以下载文件
I'm using the following jQuery code to try and access the delicious api, but it's not working. If I go directly to the api url in the browser it returns the xml as expected, so the url is correct.
Anyone got any ideas what's up? Could be that it's https, but teh jQuery documentation doesn't explicitly forbid this.
$(document).ready(function(){
$.ajax({
type: 'GET',
dataType: 'xml',
url:"https://api.del.icio.us/v1/posts/dates",
success: function(response) {
console.log(response);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
console.log(textStatus);
console.log(errorThrown);
}
});
});
edit:
I get a "data is null" error, which still happens if I set data: '', and on first attempt to access the page in the browser I'm prompted for username and password, which seems to be stored as if I include a tag with href="https://api.del.icio.us/v1/posts/dates" in the head it downloads the file ok
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Sanchez 先生所指出的,您无法从域中托管的页面向该 API 发出 XMLHttpRequest。
也许他们有 JSONP 版本的 API。
阅读此内容:获取 Delicious API URL 标签/通过 jQuery 的书签
As Mr. Sanchez points out, you can't issue XMLHttpRequests to that API from a page hosted in your domain.
Maybe they've got a JSONP version of the API.
Read this: Get Delicious API URL Tags/Bookmarks via jQuery