I've a c# winforms application that uses twitter api using the twitterizer library. The app was working fine last week but today all requests are returning Unauthorized
as result.
I tried the same credentials with a php library and it looks good. I have done a lot of debugging and am pretty sure that the problem is with twitterizer.
I know twitterizer is no longer supported but is there any way i can get my app getting working as soon as possible without having to implement a new library for all the functions i have to use?
I fiddled and this is the request that twitterizer is sending:
GET /1.1/account/verify_credentials.json HTTP/1.1
User-Agent: Twitterizer/2.4.2.32115
Authorization: OAuth realm="Twitter API",oauth_consumer_key="CONSUMER_KEY",oauth_nonce="21555892",oauth_signature_method="HMAC-SHA1",oauth_timestamp="1389894564",oauth_token="OAUTH_TOKEN",oauth_version="1.0",oauth_signature="Lrfxw7AnKZXv%2BxWitFkT9%2BIfMtY%3D"
Host: api.twitter.com
Connection: Keep-Alive
Any help is appreciated.