question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

RedirectUriReceiverActivity not getting called

See original GitHub issue

RedirectUriReceiverActivity is not getting called after authentication.Instead it opens browser. Chrome version : 59.0

My code are below

 <activity android:name="net.openid.appauth.RedirectUriReceiverActivity">
  <intent-filter>
    <action android:name="android.intent.action.VIEW"/>
    <category android:name="android.intent.category.DEFAULT"/>
    <category android:name="android.intent.category.BROWSABLE"/>
    <data android:scheme="net.openid.appauth.demo"/>
    <data android:scheme="http://www.mygofer.com/lps-subscription/api/v1/subscription/digital/email/oauth2/callback"/>
  </intent-filter>
  <intent-filter android:autoVerify="true">
    <action android:name="android.intent.action.VIEW" />

    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />

    <data
        android:host="www.mygofer.com"
        android:path="/lps-subscription/api/v1/subscription/digital/email/oauth2/callback"
        android:scheme="http" />
  </intent-filter>
</activity>

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:25 (9 by maintainers)

github_iconTop GitHub Comments

1reaction
iainmcgincommented, Jul 13, 2017

Please open separate issues, I can’t help when you all dogpile on the same issue when the causes are likely different.

If you are using Google Sign-in, please first try and make the demo application work with your client ID. Instructions are provided for the demo app that should help.

1reaction
sitannsucommented, Jul 13, 2017

59.0.3071.125

Read more comments on GitHub >

github_iconTop Results From Across the Web

AppAuth RedirectUriReceiverActivity not being catch
1 Answer 1 ; android:name · "net.openid.appauth.RedirectUriReceiverActivity" ; tools:node · "replace" ; android:exported · "true" ...
Read more >
RedirectUriReceiverActivity (AppAuth) - OpenID on GitHub
This activity gets launched when the user approves the app for use and it starts the PendingIntent given in AuthorizationService.performAuthorizationRequest(net ...
Read more >
Authenticating on Android with the AppAuth Library - Medium
While Google's own authentication platform for Android does not support WebViews, the Android team recently announced that they are working with multiple ...
Read more >
Java – cuteprogramming - WordPress.com
Also it is not scalable unless we spent extra time working on the infrastructure ... URI to the RedirectUriReceiverActivity, as shown in the...
Read more >
AppAuth Android - Gluu Server 3.1.0 Docs
If you get an error like: "Error:Could not find ... .well-known/openid-configuration is the standard suffix for open-id issuers.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found