我想知道带有 https 方案的 AppAuth 是否适用于 Firefox 和其他浏览器。
我有一个 CAS 5.2 作为 OAuth Idp,但 idp 不是问题,所以我不会在这里发布设置。
我正在尝试制作一个可以与我的 Idp 一起使用的演示 AppAuth 应用程序,我正在使用https://github.com/openid/AppAuth-Android中的演示进行设置。
我使用的是https redirect_uri 架构,因为此 OAuth Idp 不仅适用于移动设备。
问题是,我只能使 OAuth 在Chrome(和自定义选项卡版本)和三星浏览器(和自定义选项卡版本)中工作。
对于我测试过的其他浏览器(Opera、Dophin、Firefox),我只是盯着我的 redirect_uri 并拒绝返回应用程序 [ https://www.example.net/test_oauth/index.php ](注意:我已经提示用户单击链接进行重定向)
我希望它不仅仅适用于 Chrome 和三星浏览器,如果它可以与 Firefox 自定义选项卡等一起使用,那就太好了!
设置与 AppAuth Demo 基本相同,但仅强制客户端密码(用于测试目的),以及以下配置
auth_config.json:
{
"client_id": "TestOAuth",
"redirect_uri": "https://www.example.net/test_oauth/index.php",
"authorization_scope": "openid email profile",
"discovery_uri": "",
"authorization_endpoint_uri": "https://www.example.net/cas/oauth2.0/authorize",
"token_endpoint_uri": "https://www.example.net/cas/oauth2.0/accessToken",
"registration_endpoint_uri": "",
"user_info_endpoint_uri": "https://www.example.net/cas/oauth2.0/profile",
"https_required": false
}
AndroidManifest.xml
<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:host="www.example.net"
android:path="/test_oauth/index.php"
android:scheme="https" />
</intent-filter>
</activity>
谢谢!