无法在 flickr 中获取身份验证令牌

发布于 2024-09-26 07:17:43 字数 427 浏览 3 评论 0原文

我正在尝试从 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 技术交流群。

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

发布评论

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

评论(1

谜泪 2024-10-03 07:17:43

对于 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.

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