tags:

views:

88

answers:

2
A: 

You seem to have some strange characters in the oauth_signature:

JzG4DCWxuP %2B 7xT7u3tFZ2zCC8 %2B I %3D &

Check where those are coming from.

Piskvor
Thanks Piskvor for your quick reply..Those characters are because of HMAC-SHA1 signature method.. but the same request or signature is working fine if I want to view the messages.Problem is for posting the message.Can you please tell some sample post message request for Yammer in php?
Darshana
A: 

Tricky to say without seeing the code you're running, but check these things:

  • are the post body parameters all included in the key/values use to generate the signature?
  • are you including only the base URL in the signature base string? (i.e. the bit upto, but not including the '?')
  • are you including the HTTP method (POST in this case) in the signature base string?
madlep