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
withXSRFToken
ferdikoomen/openapi-typescript-codegen#2067
I'd like to investigate whether we're not forcing our users to use a vulnerable setting, need to check why Axios made that change ferdikoomen/openapi-typescript-codegen#2063 (comment)
The text was updated successfully, but these errors were encountered:
This can now be done with interceptors:
The use case in the linked PR would look something like this:
OpenAPI.interceptors.request.use((request) => { request.withXSRFToken = request.withCredentials return request })
OR
OpenAPI.interceptors.request.use((request) => { request.withXSRFToken = OpenAPI.WITH_CREDENTIALS return request })
Sorry, something went wrong.
This will be solved with client packages #308
mrlubos
No branches or pull requests
ferdikoomen/openapi-typescript-codegen#2067
I'd like to investigate whether we're not forcing our users to use a vulnerable setting, need to check why Axios made that change ferdikoomen/openapi-typescript-codegen#2063 (comment)
The text was updated successfully, but these errors were encountered: