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
I know this is more of a Laravel general setting/problem, but would it be possible to force https:// in DiscoveryController?
DiscoveryController
There are url() and route() calls that all return http://, but I need them to be https://.
url()
route()
http://
https://
All URIs MUST use https:// according to the protocol spec. So, I think it should be enforced in your code.
There's also a code in IdTokenResponse::getBuilder() that would need to return https:// for the $issuer.
IdTokenResponse::getBuilder()
$issuer
BTW: URL::forceScheme('https'); does not fix issuer in IdTokeResponse, which might be a bug in itself.
URL::forceScheme('https');
IdTokeResponse
The text was updated successfully, but these errors were encountered:
Moved to jeremy379/laravel-openid-connect#23
Sorry, something went wrong.
No branches or pull requests
I know this is more of a Laravel general setting/problem, but would it be possible to force https:// in
DiscoveryController
?There are
url()
androute()
calls that all returnhttp://
, but I need them to behttps://
.All URIs MUST use
https://
according to the protocol spec. So, I think it should be enforced in your code.There's also a code in
IdTokenResponse::getBuilder()
that would need to returnhttps://
for the$issuer
.BTW:
URL::forceScheme('https');
does not fix issuer inIdTokeResponse
, which might be a bug in itself.The text was updated successfully, but these errors were encountered: