Reputation: 4693
I have managed to acquire oAuth
tokens (request_token
, request_token_secret
) from this example but I cant seem to post to user account with them.
I would imagine that i would have to first read from the user and get their blog name but i cant find any documentaion about this.
Can anyone lend a hand on what to do with the tokens please, thank you.
Upvotes: 1
Views: 375
Reputation: 1856
Acquiring the tokens will give you authentication but not authorization, you still need to authorize your application against the target Tumblr account. Check the OAuth workflow here: http://hueniverse.com/2007/10/beginners-guide-to-oauth-part-ii-protocol-workflow/
Upvotes: 1