使用 Java 从回调 URL 检索验证程序
我是java开发环境的新手。任何帮助将不胜感激。
我开发了一个 orkut 应用程序,可以在我的移动应用程序上使用。它使用 OAuth 2.0。我成功
获取authorizationURL
使用此URL启动浏览器
使用用户 ID 和密码登录
重定向到回调URL。
我想将 URL 中的“oauth_verifier”参数提取到 javacode 中的变量中以进行进一步身份验证。或者请帮我从浏览器获取带参数的callbackURL。
请帮我 !!!
提前致谢。
I am new to java development environment. Any help will be really appreciated.
I have an orkut app developed to work on my mobile application. It uses OAuth 2.0. I succeeded in
getting the authorizationURL
launching a browser with this URL
logging in using userid and password
Redirected to callbackURL.
I want to extract the "oauth_verifier" parameter from the URL into a variable in my javacode for further authentication. Or please help me to get the callbackURL with parameters from the browser.
Please help me !!!
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用webview的setWebViewClient方法,然后实现一个新的webViewClient,然后您可以使用onPageFinished方法访问完整的url。请参阅下面的代码。
You can use setWebViewClient method of webview and then implement a new webViewClient, then you can access full url by using onPageFinished method. see code below.