android-oauth-client icon indicating copy to clipboard operation
android-oauth-client copied to clipboard

Android OAuth Client (android-oauth-client) is a library that helps to easily add an OAuth flow to an existing Android application.

Results 46 android-oauth-client issues
Sort by recently updated
recently updated
newest added

Hello, The library throws an error when somebody clicks a phone or email link on the SSO page. The error is ERR_UNKNOWN_URL_SCHEME How do I handle this? Below is my...

I'm trying to use the library with OAuth2, but I'm getting an error if I add more than one scope as a list. Scopes work just fine if I add...

java.lang.ClassCastException: com.google.api.client.auth.oauth2.AuthorizationCodeResponseUrl cannot be cast to com.google.api.client.auth.oauth2.AuthorizationCodeRequestUrl at com.google.api.client.auth.oauth2.AuthorizationCodeResponseUrl.set(AuthorizationCodeResponseUrl.java:222) at com.google.api.client.auth.oauth2.AuthorizationCodeResponseUrl.set(AuthorizationCodeResponseUrl.java:58) at com.google.api.client.http.UrlEncodedParser.parse(UrlEncodedParser.java:182) at com.google.api.client.http.UrlEncodedParser.parse(UrlEncodedParser.java:96) at com.google.api.client.http.GenericUrl.(GenericUrl.java:165) at com.google.api.client.http.GenericUrl.(GenericUrl.java:126) at com.google.api.client.http.GenericUrl.(GenericUrl.java:115) at com.google.api.client.auth.oauth2.AuthorizationCodeResponseUrl.(AuthorizationCodeResponseUrl.java:99) at com.wuman.android.auth.OAuthDialogFragment$3.interceptUrlCompat(OAuthDialogFragment.java:361) at com.wuman.android.auth.OAuthDialogFragment$3.shouldOverrideUrlLoading(OAuthDialogFragment.java:316) at android.webkit.WebViewClient.shouldOverrideUrlLoading(WebViewClient.java:73) at...

`wv.setOnKeyListener(new View.OnKeyListener() { @Override public boolean onKey(View v, int keyCode, KeyEvent event) { WebView wv = (WebView) v; if (keyCode == KeyEvent.KEYCODE_BACK && wv.canGoBack()) { wv.goBack(); return true; } return...

I have a spring based authorization server running on my pc with self signed certificate. In this case I'm unable to connect to the authorization server. I get the following...

I'm using this library to access oAuth 1.0 authenticated xero API, it's working fine in GET request so I'm able to get user's data. But it's not working with POST...

The methods: * waitForVerifierCode() * waitForExplicitCode() * waitForImplicitResponseUrl() in DialogFragmentController will all throw a CancellationException if a user presses back when the authorization dialog is open, which is prone to...

@Override public AuthorizationCodeTokenRequest newTokenRequest(String authorizationCode) { return new LenientAuthorizationCodeTokenRequest(getTransport(), getJsonFactory(), new GenericUrl(getTokenServerEncodedUrl()), authorizationCode) .setClientAuthentication(getClientAuthentication()) .setScopes(getScopes()) .setRequestInitializer( new HttpRequestInitializer() { @Override public void initialize(HttpRequest request) throws IOException { //NullPointerException If do...

The server supports few claims, how can i added claims to the token request url.