-
Notifications
You must be signed in to change notification settings - Fork 199
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
Set the default Authorization Type to 'Inherit from Parent' #271
Comments
@alexibz Did you mean that Currently we follow behaviour where if you have no security object mentioned for operation, Auth is set to |
Just overriding the security scheme mentioned in all operations in the OpenApi spec. The use case we have is that we have the same security schemes (basic auth and bearerToken) across all endpoints, but the "scopes" across the endpoints are different. |
This option forces all requests to inherit auth from the top of the collection. This is really useful when all requests should be using the same authentication. If authentication is called out on each request in the Postman app, they will not inherit the options set on the collection, like the token, and must all be set manually. By allowing all requests to simply inherit from the collection, the token can be set once at the top of the collection and all requests will use it automatically. Fixes postmanlabs#271
It would be really nice if there was an option to set all the requests to have an authorization type of
Inherit auth from parent
The text was updated successfully, but these errors were encountered: