仅使用 jquery 的Posterous api 请求

发布于 2024-11-03 20:33:35 字数 616 浏览 0 评论 0原文

我正在尝试使用 jquery 与Posterous api 交互,但是我无法理解 url 以及如何传递参数。我正在使用这个:

$.ajax({ 类型:'获取', 网址:'http://posterous.com/api/2/users/me/sites', 数据类型:'xml', 成功:函数(数据,文本状态){ 警报(数据); }, 错误:函数(xhr,ajaxOptions,抛出错误){ 警报('XHR:'+ xhr.status); 警报(“错误:”+抛出错误); }

}); });

我确信我必须验证自己的身份才能访问这些网站,但是 Posterous api 没有给出任何关于如何做到这一点的示例,有人知道吗?

I am trying to use jquery to interact with posterous api , however I am unable to make sense of url and how parameters will be passed . I am using this :

$.ajax({
type: 'GET',
url : 'http://posterous.com/api/2/users/me/sites',
dataType:'xml',
success: function(data,textStatus){
alert(data);
},
error: function(xhr, ajaxOptions, thrownError){
alert('XHR : ' + xhr.status);
alert("Error:"+thrownError);
}

});
});

I am sure I will have to authenticate myself to access the sites , but posterous api has'nt given any examples on how to do that , does any one have idea ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

暖伴 2024-11-10 20:33:35

如果他们使用基本身份验证,您将需要提供用户名和密码(通常分别是登录名和电子邮件)

查看您可以在 ajax 调用中配置的用户名和密码参数:

http://api.jquery.com/jQuery.ajax/

If they use Basic Auth you will need to provide a username and password (usually login and email respectively)

Look at the username and password arguments you can configure in the ajax call:

http://api.jquery.com/jQuery.ajax/

马蹄踏│碎落叶 2024-11-10 20:33:35

您需要在每个请求中包含授权令牌。请访问此网站了解如何获取令牌 http://apidocs.posterous.com/pages/authentication 然后在 ajax 调用中包含 data 属性 data:{api_token:YOUR_TOKEN}

you need to include an authorized token with every request. see this website to see how to get the token http://apidocs.posterous.com/pages/authentication then include the data property with your ajax call data:{api_token:YOUR_TOKEN}

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