无法使用 openid_client 通过带有 keycloak 的 pkce flutter app 进行身份验证

Cannot authenticate via pkce flutter app with keycloak using openid_client

我有以下 KeyCloak 客户端配置,以使用 pkce 身份验证流程:

Realm: REALM

Client ID:              pkce-client
Client Protocol:        openid-connect
Access Type:            public
Standard Flow Enabled:  ON
Valid Redirect URIs:    http://localhost:4200/ 

Advanced Settings:
Proof Key for Code Exchange Code Challenge Method: S256

我尝试通过 openid_client 使用 iOS 模拟器在 flutter App 中进行身份验证 https://pub.dev/packages/openid_client 像这样

  authenticate() async {

    var uri = Uri.parse('http://$localhost:8180/auth/realms/REALM');
    var clientId = 'pkce-client';
    var scopes = List<String>.of(['profile', 'openid']);
    var port = 4200;
    var redirectUri = Uri.parse(http://localhost:4200/);

    var issuer = await Issuer.discover(uri);
    var client = new Client(issuer, clientId);

    urlLauncher(String url) async {
      if (await canLaunch(url)) {
        await launch(url, forceWebView: true);
      } else {
        throw 'Could not launch $url';
      }
    }

    var authenticator = new Authenticator(
        client,
        scopes: scopes,
        port: port,
        urlLancher: urlLauncher,
        redirectUri: redirectUri,
    );

    var auth = await authenticator.authorize();
    var token= await auth.getTokenResponse();
    return token;
  }

但它只给我这个网络视图:

KeyCloak所在的终端运行给我以下几行:

INFO  [org.keycloak.protocol.oidc.endpoints.AuthorizationEndpointChecker] (default task-34) PKCE enforced Client without code challenge method.
WARN  [org.keycloak.events] (default task-34) type=LOGIN_ERROR, realmId=REALM, clientId=pkce-client, userId=null, ipAddress=127.0.0.1, error=invalid_request, response_type=code, redirect_uri=http://localhost:4200/, response_mode=query 

当使用 Postman 时它起作用了,它为我提供了登录页面:

但是我那里有额外的参数,我不知道在Authenticator(..)哪里添加它们,当使用openid_client时,状态是自动添加的。

state: <state>
code_challenge: <code-challenge>
code_challenge_method: S256 

我是否需要在 openid_client 方法的某处添加这些 code_challenge 参数?

或者我是否需要在使用应用程序时更改重定向 URL?我尝试使用此处建议的 package_name (https://githubmemory.com/repo/appsup-dart/openid_client/issues/32),但它也不起作用。

参见the source code

      : flow = redirectUri == null
            ? Flow.authorizationCodeWithPKCE(client)
            : Flow.authorizationCode(client)

您指定了 redirectUri,因此使用了 authorizationCode 流。但是在这种情况下你想要 authorizationCodeWithPKCE 流。因此,只需确保 redirectUri 为空,并使用正确的 PKCE 流程(具有正确的 url 参数,例如 code_challenge)。