I have integrate twitter api in my application. In my application i have got oauth_token and oauth_secre_key by using oauth library. NOw i want to post a new tweet. How i send my http request with authorization header. my problem is that i have a url for send message from twitter api that is :-https://api.twitter.com/1/statuses/update.json?status=Maybe%20he%27ll%20finally%20find%20his%20keys.%20%23peterfalk&trim_user=true&include_entities=true but when i open i browser then i got this error:-
{"error":"Could not authenticate you.","request":"/1/statuses/update.json?status=Maybe%20he%27ll%20finally%20find%20his%20keys.%20%23peterfalk&trim_user=true&include_entities=true"}
What is the way to fix this error? How i add authorization header with my request?
Thanks in advances...