网址重定向到另一个网址,而该网址又应该重定向回我的应用,但事实并非如此。我在这里错过了什么吗?
实际重定向网址为:https://mpivchev.github.io/Reddit-App/redirect?state=XXXXXX&code=XXXXXX
意图过滤器:
<activity android:name=".LoginActivity">
<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="mpivchev.github.io"
android:scheme="https"
android:path="/Reddit-App/redirect" />
</intent-filter>
</activity>
WebView停留在重定向页面上,而不是返回到应用程序: