How do I get the access_token from tumblr's official php client?
I've followed the directions posted in this stackoverflow question , but I am stuck. I am using tumblr/tumblr.php from Github (the official "PHP client for the tumblr API"). I am also following directions here (which are actually for twitter), but those directions aren't tailored for the git library I am using. I have a valid consumer key and secret. From those I make a request and get oauth_token and oauth_token_secret like so: $client = new Tumblr\API\Client($consumerKey,$consumerSecret); $client->getRequestHandler()->setBaseUrl('https://www.tumblr.com/'); $req = $client->getRequestHandler()