We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
customHeaders
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
It looks like the config parameter customHeaders is disregarded.
const config = { ... customHeaders: { authorize: { "X-MyCustomHeader": "value", }, }, }; authorize(config)
The outgoing authorization request does not have a custom header X-MyCustomHeader on Android.
X-MyCustomHeader
Android
The text was updated successfully, but these errors were encountered:
Fix FormidableLabs#734 customHeaders is not taken into account
b6e3a7d
As per the documentation android custom Headers should pass as `customHeaders` but in module it was accessed as `headers`
I have the same problem in IOS version. Any suggestion?
const config = { ... additionalHeaders: { "X-MyCustomHeader": "value", }, };
Sorry, something went wrong.
headers
The above PR was merged, so I'm closing this for now. If we still have an issue, please reopen.
Successfully merging a pull request may close this issue.
Issue
It looks like the config parameter
customHeaders
is disregarded.The outgoing authorization request does not have a custom header
X-MyCustomHeader
on Android.Environment
Android
The text was updated successfully, but these errors were encountered: