我正在用IdentityServer4实现Xamarin AppAuth库。在自定义标签中授权后,我无法实现重定向回应用程序。授权请求如下所示:
AuthorizationRequest.Builder authReqBuilder =
new AuthorizationRequest.Builder(authConfig,
"clientId",
ResponseTypeValues.Code,
Uri.Parse("https://com.example/oauth2redirect"));
authReqBuilder.SetScope("api1 openid profile offline_access");
这是AndroidManifest.xml中的配置:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application ...>
<activity
android:name="net.openid.appauth.RedirectUriReceiverActivity"
tools:node="replace">
<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:scheme="https"
android:host="example.com"
android:path="/oauth2redirect" />
</intent-filter>
</activity>
</application>
</manifest>
处理请求并登录用户后,重定向URL将应用到“自定义”标签中,并且屏幕保持不变,而没有重定向回本机应用程序。
能否请您提供一些线索,以使重定向回到本机应用程序?
谢谢。
更新
GitHub存储库:https://github.com/OldrichTodt/AppAuthExample/blob/master/README.md
从MainPage.xaml.cs中的Xamarin应用程序调用登录代码 这是完整的代码:
public async Task LoginAsync()
{
try
{
var authConfig = await AuthorizationServiceConfiguration.FetchFromIssuerAsync(Uri.Parse("https://example.com"));
AuthState authState = new AuthState(authConfig);
AuthorizationRequest.Builder authReqBuilder = new AuthorizationRequest.Builder(authConfig,
"RealOneGame.Xamarin",
ResponseTypeValues.Code,
Uri.Parse("https://com.example/oauth2redirect"));
authReqBuilder.SetScope("api1 openid profile offline_access");
AuthorizationRequest authReq = authReqBuilder.Build();
AuthorizationService authService = new AuthorizationService(Application.Context);
authService.PerformAuthorizationRequest(authReq, PendingIntent.GetActivity(Application.Context, 0, new Intent(Application.Context, typeof(MyAuthCompleteActivity)), 0),
PendingIntent.GetActivity(Application.Context, 0, new Intent(Application.Context, typeof(MyAuthCanceledActivity)), 0));
}
catch (Exception ex)
{
}
}
答案 0 :(得分:0)
能否请您提供一些线索,以使重定向回到本机应用程序?
自定义标签在您的应用中打开,而不是启动新应用。因此,您设置的深层链接将不起作用。您可以在授权页面的按钮或链接中设置onclick
事件,以关闭标签。例如:
<a href="#" onclick="window.close();">Click me to close</a>
或者您可以参考以下答案以关闭“自定义”标签: How to close chrome custom tabs