We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using this configuration:
$oidc->setResponseTypes(['id_token token']); $oidc->addScope(['openid']); $oidc->setAllowImplicitFlow(true); $oidc->addAuthParam(['response_mode' => 'form_post']); $oidc->setRedirectURL('http://localhost:3000/login.php'); $oidc->authenticate();
And I get this error message: "The+authorization+server+does+not+support+the+response+type+%27token%27+for+confidential+clients."
What did I do wrong?
The text was updated successfully, but these errors were encountered:
$oidc->setAllowImplicitFlow(true);
wild guess - implicit flow is not supported by adfs? Generally speaking implicit flow is dead as it is considered insecure
Sorry, something went wrong.
Thank you, but unfortunately without flow it doesn't work either.
No branches or pull requests
Using this configuration:
$oidc->setResponseTypes(['id_token token']);
$oidc->addScope(['openid']);
$oidc->setAllowImplicitFlow(true);
$oidc->addAuthParam(['response_mode' => 'form_post']);
$oidc->setRedirectURL('http://localhost:3000/login.php');
$oidc->authenticate();
And I get this error message: "The+authorization+server+does+not+support+the+response+type+%27token%27+for+confidential+clients."
What did I do wrong?
The text was updated successfully, but these errors were encountered: