I have an old website (http://www.drawaplanet.com) which used to automatically post all user submitted artwork to a tumblr blog via the tumblr api. Recently I noticed the artwork has stopped appearing on the tumblr blog. I believe this is because tumblr have switched their api from version 1 to version 2 and it now requires OAuth authentication to make a post.
I want to rewrite my old script to use the new v2 api and this posting method seems suitable: http://www.tumblr.com/docs/en/api/v2#posting
These examples seem to be helpful to on how to use tumblr api in conjunction with OAuth: http://technoloid.blogspot.co.uk/2012/06/tumblr-api-101.html https://gist.github.com/1649885
I understand I need to create an app on tumblr which gives me my consumer key and my consumer secret. However I don't quite understand where the access token and secret come from? A lot of the OAuth guides I have found so far seem to be geared up for a scenario where a user is allowing access to post to their own blog however in my scenario I want the script to always post to my blog (drawaplanet.tumblr.com).
Any guidance on how I can create a script to always send posts to my own blog would be greatly received. Thanks.