使用ajax访问delicious api时出现问题

发布于 2024-08-20 17:15:24 字数 724 浏览 6 评论 0原文

我正在使用以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

饭团 2024-08-27 17:15:24

正如 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文