isudakoff / yii2-tumblr-authclient
Tumblr extension for using via yii2-authclient
Installs: 279
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/isudakoff/yii2-tumblr-authclient
Requires
- yiisoft/yii2-authclient: ~2.0@dev
This package is auto-updated.
Last update: 2025-09-29 02:01:42 UTC
README
This extension adds Tumblr OAuth1 supporting for yii2-authclient.
Installation
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.
Usage
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 ], ], // ... ]