You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.
When my application gets a request with a long query string (above ~3000 chars) I get an InvalidArgumentException saying "Invalid query '...'". This seems to be due to preg_match not being able to handle long strings.
You can test it with
$query = str_repeat('a', 3000);
new \Jasny\HttpMessage\Uri(['query' => $query]);
Unfortunately I need long query strings to handle SAML Requests.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When my application gets a request with a long query string (above ~3000 chars) I get an
InvalidArgumentException
saying "Invalid query '...'". This seems to be due topreg_match
not being able to handle long strings.You can test it with
Unfortunately I need long query strings to handle SAML Requests.
The text was updated successfully, but these errors were encountered: