Thanks @andypiper
Can we access Twitter APIs using curl and not passing the header in the curl.
curl
–get ‘https://api.twitter.com/1.1/search/tweets.json’
–data ‘&q=%23archaeology’
–header '‘Authorization: OAuth oauth_consumer_key=“123”, oauth_nonce=“9999”, oauth_signature=“AAAA”, oauth_signature_method=“HMAC-SHA1”, oauth_timestamp=“1450742465”, oauth_token=“9999-AAAA”, oauth_version=“1.0”’
–silent
I have Access Token and Access Token Secret, can I use only these and curl to access the Twitter APIs (no header)?