无法在 flickr 中获取身份验证令牌
我正在尝试从 android 访问 flickr 服务,
以获得完整的权限,
首先我通过集成 & 使用 flickr.auth.getFrob 方法获取 forbs;转换成MD5
秘密 + 'api_key' + [api_key] + '方法' + 'flickr.auth.getFrob'
我成功获得了 frob ,但是当我通过集成 & 请求授权令牌时出现了问题转换成MD5
秘密 + 'api_key' + [api_key] + 'frob' + [frob] + '方法' + 'flickr.auth.getToken'
但不幸的是我得到了无效的 frob ,我不知道为什么问题是什么。
I am trying to access flickr services from android ,
to get the full permissions ,
first of all i fetched forbs using flickr.auth.getFrob method by integrating & converting in MD5
secret + 'api_key' + [api_key] +
'method' + 'flickr.auth.getFrob'
i successfully got the frob , but the problem came when i request a authorized token by integrating & converting in MD5
secret + 'api_key' + [api_key] +
'frob' + [frob] + 'method' +
'flickr.auth.getToken'
but unfortunately i am getting invalid frob , i don't why whats the problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 Flickr 来说,身份验证这个东西确实很棘手。在我的代码中,我在用户通过身份验证后收到了回调,并获得了与 getFrob 的响应不同的 frob(类似于 pnbhd://auth?frob=XXXXX)。然后当我使用这个frob时,它起作用了。我想这就是问题所在,因为您得到的是“无效的 frob”,而不是与 api_sig 有关的错误。
This auth stuff is really tricky for Flickr. In my code, I got a callback after the user authenticated, and was given a different frob than the response to getFrob (something like pnbhd://auth?frob=XXXXX). Then when I used this frob, it worked. I imagine this is the problem, since you're getting "invalid frob" and not an error having to do with api_sig.