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
Ebay changed the token format from tokens beginning with AgAAAA** to much shorter tokens tokens beginning with v^1.1#.
The new token format issued by Ebay contain hash # characters that gets interpreted as the beginning of a comment in the .env file.
To prevent this the tokens in the .env file have to be wrapped in double quotes.
Ebay throws a 931 Error (invalid Token), if quotes are missing in .env file.
EBAY_PROD_AUTH_TOKEN="v^1.1#a6y..."
This should be mentioned in the README.md file
The text was updated successfully, but these errors were encountered:
Ebay changed the token format from tokens beginning with AgAAAA** to much shorter tokens tokens beginning with v^1.1#.
The new token format issued by Ebay contain hash # characters that gets interpreted as the beginning of a comment in the .env file.
To prevent this the tokens in the .env file have to be wrapped in double quotes.
Ebay throws a 931 Error (invalid Token), if quotes are missing in .env file.
EBAY_PROD_AUTH_TOKEN="v^1.1#a6y..."
This should be mentioned in the README.md file
The text was updated successfully, but these errors were encountered: