-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[HttpFoundation] Add QueryParameterRequestMatcher
#51324
New issue
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
Merged
fabpot
merged 1 commit into
symfony:7.1
from
alexandre-daubois:query-param-request-matcher
Feb 3, 2024
Merged
[HttpFoundation] Add QueryParameterRequestMatcher
#51324
fabpot
merged 1 commit into
symfony:7.1
from
alexandre-daubois:query-param-request-matcher
Feb 3, 2024
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c3b18c5
to
cf18d8f
Compare
While writing github webhook request parser I encountered that they send signature as a header, would it make sense to also add |
That would be a big yes for me, definitely! Gave a try here: #51343 Thank you for the idea, it would be even more powerful with those features! |
6aec919
to
762ae91
Compare
762ae91
to
7803103
Compare
Rebased and conflicts fixed |
7803103
to
448c2b1
Compare
OskarStark
approved these changes
Dec 29, 2023
fabpot
approved these changes
Feb 3, 2024
Thank you @alexandre-daubois. |
fabpot
added a commit
that referenced
this pull request
Feb 3, 2024
…-daubois) This PR was merged into the 7.1 branch. Discussion ---------- [HttpFoundation] Add `HeaderRequestMatcher` | Q | A | ------------- | --- | Branch? | 7.1 | Bug fix? | no | New feature? | yes | Deprecations? | no | Tickets | _NA_ | License | MIT | Doc PR | Todo This a follow up to: - #51324 After `@norkunas`' [comment](#51324 (comment)) Commits ------- 62b5a34 [HttpFoundation] Add `HeaderRequestMatcher`
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We know we need a
authorizationCode
query parameter to support a request in our authenticator. We would love to use only theChainRequestMatcher
to do so. I'd like to add thisQueryParameterRequestMatcher
in order to do the following:Which would match the following:
/sso/provider?authorizationCode=...