0

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)
    {
    }
}
4

1 に答える 1