2017 © Pedro Peláez
 

package tumblr-downloader

PHP library to grab images from Tumblr blogs

image

seregazhuk/tumblr-downloader

PHP library to grab images from Tumblr blogs

  • Tuesday, January 30, 2018
  • by seregazhuk
  • Repository
  • 0 Watchers
  • 5 Stars
  • 23 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

PHP Tumblr Downloader

Installation

The recommended way to install this library is via Composer. New to Composer?, (*1)

composer require seregazhuk/tumblr-downloader

Quick Start

Script

require "vendor/autoload.php";

use Tumblr\API\Client;
use seregazhuk\TumblrDownloader\Downloader;

$client = new Client(
    'YourConsumerKey', 
    'YourConsumerSecret', 
    'YourToken', 
    'YourSecret'
);

$downloader = new Downloader($client);
$downloader->save('some_blog.tumblr.com');

Console command

You can also use console command tumblr-downloader in your terminal. Setup your API credentials in config.php file, and you are ready to go:, (*2)

return [
    'consumer_key'    => 'YourConsumerKey',
    'consumer_secret' => 'YourConsumerSecret',
    'token'           => 'YourToken',
    'token_secret'    => 'YourSecret',
];

This command will start downloading images from catsof.tumblr.com blog:, (*3)

$ ./tumblr-downloader save catsof.tumblr.com

The Versions

30/01 2018

dev-master

9999999-dev

PHP library to grab images from Tumblr blogs

  Sources   Download

MIT

The Requires

 

by Serega Zhuk

php tumblr lib

10/10 2016

0.0.1

0.0.1.0

PHP library to grab images from Tumblr blogs

  Sources   Download

MIT

The Requires

 

by Serega Zhuk

php tumblr lib