CallbackActivity not invoke
i have configured activity callback on my manifest but it's not called
<!-- OAuth Callback--> <activity android:name="com.linusu.flutter_web_auth.CallbackActivity"> <intent-filter android:label="flutter_web_auth"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="https" /> </intent-filter> </activity>
I’m also having this problem
I'm also having this problem. All callbacks return in browser as 'This site cannot be reached."
<activity android:name="com.linusu.flutter_web_auth.CallbackActivity" > <intent-filter android:label="flutter_web_auth"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="fhir_cerner" /> </intent-filter> </activity>

The android scheme must have the format: domain.company.some_name and must match the redirect uri configured in the auth server
The android scheme must have the format: domain.company.some_name and must match the redirect uri configured in the auth server
I have the same problem but don't really understand the answer. sorry. Could you maybe break it down with an example? Also, where do you configure the auth server? thanks
Please read our new troubleshooting guide: https://github.com/LinusU/flutter_web_auth#troubleshooting
In the screenshot above it looks like a final :// is missing when redirecting.