Reputation: 1
I have successfully come up to the access_token
step along with final oauth_token
and oauth_token_secret
values.
Now I'm trying to access the Post method given by Yammer API with following request :
https://www.yammer.com/api/v1/messages/? body=MyMessage& oauth_consumer_key=Myconsumerkey& oauth_nonce=1825bbc0f0a2875eb94bdb4d51c0638b& oauth_signature=JzG4DCWxuP%2B7xT7u3tFZ2zCC8%2BI%3D& oauth_signature_method=HMAC-SHA1& oauth_timestamp=1257761059& oauth_token=Myfinaloauthtoken& oauth_version=1.0
But I'm getting "Invalid OAuth signature" error.
Can somebody help me in this.
Upvotes: 0
Views: 513
Reputation: 21
Looks like you are missing %26 from the end of your signature. I realise this was an old post but did you manage to get a Yammer post message working?
Upvotes: 2
Reputation: 49676
Tricky to say without seeing the code you're running, but check these things:
POST
in this case) in the signature base string?Upvotes: 0
Reputation: 92762
You seem to have some strange characters in the oauth_signature:
JzG4DCWxuP %2B 7xT7u3tFZ2zCC8 %2B I %3D &
Check where those are coming from.
Upvotes: 0