Custom parameters in the body of HTTP external metadata POST
requests
#156
+163
−13
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.
Adds
parameters
andcontentType
options tospec.metadata.http
parameters
is a list of static and dynamic values (fetched from the authroization JSON) to be encoded in the body of HTTP requests whenever usingPOST
method.contentType
drives the encoding ofparameters
. Accepted values are:application/x-www-form-urlencoded
(default) andapplication/json
.Example of auth config with 3 HTTP external metadata requests using
GET
andPOST
methods and different requestContent-Type
options:The config above will cause the 3 HTTP requests below, sent by Authorino to the
http://talker-api.authorino.svc.cluster.local:3000
, within the scope of the ext-auth workload trigered by the following request:Metadata HTTP request
echo-api-get
:Metadata HTTP request
echo-api-post-form
:Metadata HTTP request
echo-api-post-json
:Closes #151