Is it possible to have two activities each one with a different callback? I tried this on the Android Manifest:
<activity
android:name=".LoginActivity"
android:launchMode="singleTask">
<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:host="@string/auth0_domain"
android:pathPrefix="/android/it.siwego.clientapp/login/callback"
android:scheme="https"/>
</intent-filter>
</activity>
<activity
android:name=".RegisterActivity"
android:launchMode="singleTask">
<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:host="@string/auth0_domain"
android:pathPrefix="/android/it.siwego.clientapp/register/callback"
android:scheme="https"/>
</intent-filter>
</activity>
I wanna be able to use Facebook login/register from both of them, but when I try to do this I get a webpage that says The url https://siwego.eu.auth0.com/android/it.siwego.clientapp/callback is not on the list of allowed callbacks URLs
. And then the two URLs I added to the Manifest are listed.