We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Bearer Authentication for the whole API can be enabled in Swagger when applying a security property.
security
swagger.json
{ "paths": { // ... }, "security": [ { "Bearer": [] } ], "swagger": "2.0", }
Let's implement a general authorization setting (as suggested in #62 (comment)).
Suggestion
async deleteById(id: string): Promise<void> { const config: AxiosRequestConfig = { headers: { Authorization: this.config.accessToken, }, method: 'delete', url: `/identity-providers/${id}`, withCredentials: true, }; await this.apiClient.request(config); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bearer Authentication for the whole API can be enabled in Swagger when applying a
security
property.swagger.json
Let's implement a general authorization setting (as suggested in #62 (comment)).
Suggestion
The text was updated successfully, but these errors were encountered: