Generating oauth signatures is kind of complicated, and where a lot of
people on this board have trouble.
You're best off finding a good oauth library to generate the oauth HTTP
call for you. It will generate the appropriate oauth headers and signature
for your HTTP request, making your life much easier.
It looks like you're using Ruby?
John Bunting (works for Tumblr, and often replies on this board) has some
kind of Tumblr Ruby wrapper here:
https://github.com/codingjester/tumblr_client
or https://github.com/codingjester/tumblr-oauth
Not a Ruby programmer personally, But I'd look into those.
Maybe Mr Bunting has something to add?
Felix B
On Thu, May 31, 2012 at 3:49 PM, Neil Johnson <bananan
...@gmail.com> wrote:
> I have been trying to get an access_token for my app through the xauth
> flow.. But I am getting the error "oauth_signature required".
> How do i generate this signature? I have been looking everywhere for
> documentation on this, but i cant seem to find much.
> > HTTParty.post("
> https://www.tumblr.com/oauth/access_token?x_auth_username=email&passw...{Time.now.to_i}&auth_mode=client_auth
> ")
> => "oauth_signature required"