使用 Java 从回调 URL 检索验证程序

发布于 2024-11-02 08:45:26 字数 362 浏览 1 评论 0原文

我是java开发环境的新手。任何帮助将不胜感激。

我开发了一个 orkut 应用程序,可以在我的移动应用程序上使用。它使用 OAuth 2.0。我成功

  1. 获取authorizationURL

  2. 使用此URL启动浏览器

  3. 使用用户 ID 和密码登录

  4. 重定向到回调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

  1. getting the authorizationURL

  2. launching a browser with this URL

  3. logging in using userid and password

  4. 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 技术交流群。

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

发布评论

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

评论(1

眼眸 2024-11-09 08:45:26

您可以使用webview的setWebViewClient方法,然后实现一个新的webViewClient,然后您可以使用onPageFinished方法访问完整的url。请参阅下面的代码。

webView.setWebViewClient(new WebViewClient()
{

    @Override
    public void onPageFinished(WebView view, String url)
    {
        if (url.contains("#access_token=")) //I am looking for #access_token= hash, you can look for any parameter here
        {
            String accessToken = url.substring(url.indexOf("#access_token=") + 14, url.length()); //14 is my "#access_token=" length, yours will be different
            writeAccessTokenToFile(accessToken); //this method is your method
            loadApplication(); //then load you application logic, this is your method too
        }
    }
});

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.

webView.setWebViewClient(new WebViewClient()
{

    @Override
    public void onPageFinished(WebView view, String url)
    {
        if (url.contains("#access_token=")) //I am looking for #access_token= hash, you can look for any parameter here
        {
            String accessToken = url.substring(url.indexOf("#access_token=") + 14, url.length()); //14 is my "#access_token=" length, yours will be different
            writeAccessTokenToFile(accessToken); //this method is your method
            loadApplication(); //then load you application logic, this is your method too
        }
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文