我正在尝试使用自定义选项卡实现 OAuth2 登录流程,但在登录成功后,将使用以下 url 检索 302 重定向:“my.app:/oauth2/code?xxx”。
现在我已经在 AndroidManifest 中声明了重定向 URI 来收听这个,但是看到了 ERR_UNKNOWN_URL_SCHEME:/
<intent-filter>
<data
android:host="oauth2"
android:scheme="my.app"
android:pathPrefix="/code"
/>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
我尝试了不同的 url-schemes 来收听,但似乎没有一个被触发来打开我的应用程序。