Thank you!
I have attempted to use oauth 2 to get login credentials (terminology?) I consistently get a the reply:
{“errors”:[{“code”:99,“message”:“Unable to verify your credentials”,“label”:“authenticity_token_error”}]}
I am using curl with this command:
curl -v --request ‘POST’ ‘https://api.twitter.com/oauth2/token’ -H ‘Authorization: Basic XYZ===’ -H “Content-Type: application/x-www-form-urlencoded; charset=utf-8” -d “grant_type=client_credentials”
Where XYZ=== is replaced with my base64’ed consumer key and consumer secret.
Does the form of my curl command look correct?
Thank you again for your reply.