How do I specify parameters on my REST-API call?
Specifically, I am trying to call https://api.twitter.com/1.1/account/verify_credentials.json and add the skip_status=true parameter.
I can call the verify_credentials endpoint with no errors. However, when I add skip_status=true, I get a 401 not authorized error. I guess I’m adding the parameter incorrectly? I just added it to the end of the URL as a querystring. Is this not correct?
https://api.twitter.com/1.1/account/verify_credentials.json?skip_status=true
Does the parameter need to be added to the header?
TIA,
Owen