freelancer.com api 的 OAuth requestToken
有人用过 freelancer.com api 吗?我什至无法检索它的 requestToken 。我想要安卓版的。我尝试使用路标库,但出现以下错误
oauth.signpost.exception.OAuthNotAuthorizedException:授权失败(服务器回复 401)。如果消费者密钥不正确或签名不匹配,则可能会发生这种情况。
我正在使用正确的消费者密钥。同样的方法也适用于 Twitter。
Has anybody used freelancer.com api? I am not able to even retrieve the requestToken for it. I want it for android. I tried using the signpost library, but it gives the following error
oauth.signpost.exception.OAuthNotAuthorizedException: Authorization failed (server replied with a 401). This can happen if the consumer key was not correct or the signatures did not match.
I am using the correct consumer key. The same method works successfully for twitter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
回复晚了,但是你成功了吗?
那么,它适用于 Twitter,但不适用于 Freelancer?
我在 freelancer 中发现的一件事是,如果在标头中发送 OAuth 参数,它不会采用这些参数。您需要在 GET 或 POST 中提供 OAuth 参数。另一方面,Twitter 建议通过标头发送这些参数。
Late reply, but did you get it to work?
So, it works for Twitter, but not Freelancer?
One thing I've found with freelancer, is that it does not take the OAuth parameters if they are sent in the header. You will need to provide the OAuth parameters either in the GET or POST. Twitter on the other hand recommends that these parameters be sent via the header.
早期版本的路标仅在标头中实现 OAuth 参数。 freelanecer.com api 期望参数位于查询字符串中。最新版本的 Signpost 现在可以在查询字符串中实现 OAuth 参数。
以下是服务构建器的相关代码:
Earlier versions of signpost only implement OAuth Parameters in the header. The freelanecer.com api expects the parameters to be in the query string. The latest version of Signpost can now implement OAuth parameters in the query string.
Here is the relevant code from the service builder: