Had this problem. My access token had quote marks in my local.env...
ENV_TOKEN="access_token"
Removed them for the production environment...
ENV_TOKEN=access_token
And it worked.