仅使用 jquery 的Posterous api 请求
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果他们使用基本身份验证,您将需要提供用户名和密码(通常分别是登录名和电子邮件)
查看您可以在 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/
您需要在每个请求中包含授权令牌。请访问此网站了解如何获取令牌 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}