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
Thanks for the code.
I'm using this behind an Haproxy load balancer which does SSL termination. So I'm within an http:// call.
RedirectLoginHelper has this:
$redirectUrl ??= $this->urlDetectionHandler->getCurrentUrl();
UrlDetectionHandler::isBehindSsl will return http:// in this case, but I will want it to use https:// because it'll go to the load balancer.
UrlDetectionHandler::isBehindSsl
http://
https://
I'm not sure that Facebook still supports API access over HTTP - I'm getting it returning errors about my domain being invalid (which it's not).
Is there any way to override to always use SSL?
The text was updated successfully, but these errors were encountered:
You can write your own class with interface UrlDetectionInterface and insert it to config parameter url_detection_handler.
UrlDetectionInterface
url_detection_handler
Sorry, something went wrong.
No branches or pull requests
Thanks for the code.
I'm using this behind an Haproxy load balancer which does SSL termination. So I'm within an http:// call.
RedirectLoginHelper has this:
$redirectUrl ??= $this->urlDetectionHandler->getCurrentUrl();
UrlDetectionHandler::isBehindSsl
will returnhttp://
in this case, but I will want it to usehttps://
because it'll go to the load balancer.I'm not sure that Facebook still supports API access over HTTP - I'm getting it returning errors about my domain being invalid (which it's not).
Is there any way to override to always use SSL?
The text was updated successfully, but these errors were encountered: