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
A common way to provide authentication is via a token string passed as a query param. At the moment, there's no way to define a token value as a query param without hard coding the value. This could leverage the forward headers dialog but append as a query param instead of pass as header.
openapi: 3.0.0
...
# 1) Define the key name and locationcomponents:
securitySchemes:
ApiKeyAuth: # arbitrary name for the security schemetype: apiKeyin: query # can be "header", "query" or "cookie"name: token # name of the header, query parameter or cookie...
the in property is important to watch.
The text was updated successfully, but these errors were encountered:
A common way to provide authentication is via a token string passed as a query param. At the moment, there's no way to define a token value as a query param without hard coding the value. This could leverage the forward headers dialog but append as a query param instead of pass as header.
the
in
property is important to watch.The text was updated successfully, but these errors were encountered: