4

我正在创建允许用户使用 facebook 或 google 帐户登录的应用程序。他们按下“登录”按钮,然后要求他们使用 facebook 或 google 登录,当他们选择其中之一时,会弹出 webview。

问题是google autentication,阅读了一些文章并搜索了网络,仍然可以在没有帐户管理器的情况下进行google登录,我知道他们改变了一些东西。

如果可能的话,也许是一些我可以研究或看到它工作的例子。我试过这个:http ://blog.doityourselfandroid.com/2011/08/06/oauth-2-0-flow-android/ 只是编辑不做纬度但用户信息,总是得到错误400。

感谢您的帮助,到目前为止,你们都帮了很多忙!

编辑:关于错误:我收到了例外 400 错误请求,我通常知道哪一行以及什么问题。

问题出在我创建 AccessTonekResponse 并执行的位置,因为它需要客户端密码,而且我无法在 google api 页面上仅在 Web 应用程序中找到客户端密码,在已安装的应用程序中没有任何内容。

        public void onPageStarted(WebView view, String url,Bitmap bitmap)  {  
            System.out.println("onPageStarted : " + url);
        }
        @Override  
        public void onPageFinished(WebView view, String url)  {  

            if (url.startsWith(OAuth2ClientCredentials.REDIRECT_URI)) {
                try {

                    if (url.indexOf("code=")!=-1) {

                        String code = extractCodeFromUrl(url);
                        System.out.println(code);
                          AccessTokenResponse accessTokenResponse = new GoogleAuthorizationCodeGrant(new NetHttpTransport(),
                                          new JacksonFactory(),
                                          OAuth2ClientCredentials.CLIENT_ID,
                                          OAuth2ClientCredentials.CLIENT_SECRET,
                                          code,
                                          OAuth2ClientCredentials.REDIRECT_URI).execute();

                          CredentialStore credentialStore = new SharedPreferencesCredentialStore(prefs);
                          credentialStore.write(accessTokenResponse);
                          view.setVisibility(View.INVISIBLE);
                          startActivity(new Intent(OAuthAccessTokenActivity.this,LatitudeApiSample.class));
                    } else if (url.indexOf("error=")!=-1) {
                        view.setVisibility(View.INVISIBLE);
                        new SharedPreferencesCredentialStore(prefs).clearCredentials();
                        startActivity(new Intent(OAuthAccessTokenActivity.this,LatitudeApiSample.class));
                    }

                } catch (IOException e) {
                    e.printStackTrace();
                    System.out.println(e.getLocalizedMessage());
                }

            }
            System.out.println("onPageFinished : " + url);

        }

错误代码:

08-22 09:22:07.866: W/System.err(391): com.google.api.client.http.HttpResponseException: 400 Bad Request
08-22 09:22:07.866: W/System.err(391):  at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:380)
08-22 09:22:07.876: W/System.err(391):  at com.google.api.client.auth.oauth2.draft10.AccessTokenRequest.executeUnparsed(AccessTokenRequest.java:457)
08-22 09:22:07.876: W/System.err(391):  at com.google.api.client.auth.oauth2.draft10.AccessTokenRequest.execute(AccessTokenRequest.java:473)
08-22 09:22:07.876: W/System.err(391):  at com.ecs.android.sample.oauth2.OAuthAccessTokenActivity$1.onPageFinished(OAuthAccessTokenActivity.java:79)
08-22 09:22:07.876: W/System.err(391):  at android.webkit.CallbackProxy.handleMessage(CallbackProxy.java:274)
08-22 09:22:07.896: W/System.err(391):  at android.os.Handler.dispatchMessage(Handler.java:99)
08-22 09:22:07.896: W/System.err(391):  at android.os.Looper.loop(Looper.java:123)
08-22 09:22:07.896: W/System.err(391):  at android.app.ActivityThread.main(ActivityThread.java:4627)
08-22 09:22:07.896: W/System.err(391):  at java.lang.reflect.Method.invokeNative(Native Method)
08-22 09:22:07.896: W/System.err(391):  at java.lang.reflect.Method.invoke(Method.java:521)
08-22 09:22:07.896: W/System.err(391):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
08-22 09:22:07.896: W/System.err(391):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
08-22 09:22:07.896: W/System.err(391):  at dalvik.system.NativeStart.main(Native Method)
4

1 回答 1

3

您可能在Google 的 API 控制台中将您的客户端 ID创建为具有应用程序类型Android的已安装应用程序。这仅适用于. 如果您想自己实现流程,请使用其他应用程序类型,您将获得所需的客户端密码AuthenticationManager

于 2012-08-22T10:04:00.233 回答