Description/Error
Using the jwt sample app provided on github ,I generate access token and get the user info ,
then i try to send post request using axios to create user i get error code 124 message invalid access token
As stated here, axios does not support the bearer for the auth object.
auth indicates that HTTP Basic auth should be used, and supplies credentials.
This will set an Authorization header, overwriting any existing Authorization custom headers you have set using headers.
Please note that only HTTP Basic auth is configurable through this parameter.
For Bearer tokens and such, use Authorization custom headers instead.
Instead, specify the bearer in the headers like this: