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
Our request is failing the validate step because our authorization header is in title case. It looks like the validate function is looking for that header in all lower case - req.original.headers['authorization'].
According to the http spec, header names are case-insensitive. Can the validate function be updated to ignore case?
The text was updated successfully, but these errors were encountered:
Our request is failing the validate step because our authorization header is in title case. It looks like the validate function is looking for that header in all lower case -
req.original.headers['authorization']
.According to the http spec, header names are case-insensitive. Can the validate function be updated to ignore case?
The text was updated successfully, but these errors were encountered: