tumblr / tumblr.php

Tumblr API v2 PHP Client
Apache License 2.0
407 stars 115 forks source link

Redirects now return code 302 #88

Closed jasonpenny closed 7 years ago

jasonpenny commented 7 years ago

The code is expecting redirects to send code 301, but they now send 302

Fixes #87

Testing

<?php
require_once 'vendor/autoload.php';

$client = new Tumblr\API\Client(
    '...key...',
    '...secret...'
);
$avatar = $client->getBlogAvatar('david', 96);

var_dump($avatar);