Phonegap childbrowser 插件获取最后页面重定向

发布于 2025-01-02 04:51:38 字数 317 浏览 0 评论 0原文

大家好!

我正在尝试使用 Childbrowser Phonegap 插件在我的 Phonegap 应用程序中重定向用户以进行用户 Twitter 身份验证。这个想法是检测 twitter 何时重定向到回调页面,获取 oauth_verifier 令牌并最终获取请求令牌。

问题是,twitter 似乎重定向到 api/authentication,然后重定向到回调 url。有人知道如何跳过第一个 onLocationChanged 事件,然后捕获最后一个重定向吗?我可以等待twitter完成整个重定向并最终获得最后一个重定向吗?

提前致谢!

最好的。

Hy everybody!

I'm trying to use Childbrowser Phonegap plugin to redirect the user within my phonegap application for user Twitter authentication. The idea is to detect when twitter redirects to callback page, get oauth_verifier token and finally get the request token.

The question is that it seems that twitter makes a redirection to api/authentication and then other redirection to the callback url. Anyone knows how can I jump over the first onLocationChanged event and then capture the last redirection? Can I wait for twitter to finish the whole redirection and finally get the last redirection?

Thanks in advance!

Best.

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

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

发布评论

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

评论(1

走走停停 2025-01-09 04:51:38

我写了一篇关于这件事的博客文章和教程 -
www.drewdahlman.com/meusLabs/?p=40

您最喜欢的作品感兴趣的是。这将允许您侦听多个更改,但仅在调用回调 URL 时触发。

if (loc.indexOf("http://www.YOUR_DOMAIN.com/?") >= 0){

}

I've written a blog post and tutorial about this exact thing -
www.drewdahlman.com/meusLabs/?p=40

The piece you would be most interested in is. this will allow you to listen for multiple changes but only fire when the callback URL is called.

if (loc.indexOf("http://www.YOUR_DOMAIN.com/?") >= 0){

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