Is it possible that I just verify oauth_signature only via a url?
I have OAuth consumer secret, but i don't have token secret, I'm in a position like man-in-middle, but i don't want to change anything, but just verify whether this oauth request is valid or not. All what i get is a simple url containing standard things like:
- oauth_consumer_key
- oauth_token
- oauth_signature_method (always HMAC-SHA1)
- oauth_timestamp
- oauth_nonce
- oauth_signature.
Can i use these thing to verify?