This extension adds Tumblr OAuth1 supporting for yii2-authclient.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist isudakoff/yii2-tumblr-authclient "*"
or add
"isudakoff/yii2-tumblr-authclient": "*"
to the require
section of your composer.json.
You must read the yii2-authclient docs
Register your application in Tumblr
and add the Tumblr client to your auth clients.
'components' => [
'authClientCollection' => [
'class' => 'yii\authclient\Collection',
'clients' => [
'tumblr' => [
'class' => 'isudakoff\authclient\Tumblr',
'consumerKey' => 'tumblr_app_id',
'consumerSecret' => 'tumblr_app_secret',
],
// other clients
],
],
// ...
]