A Laravel Package to generate OAuth1/OAuth2 Providers that are compatible with the Socialite Providers Manager.
composer require socialiteproviders/generators
Add the ServiceProvider to the providers array in the config/app.php
.
'providers' => [
SocialiteProviders\Generators\GeneratorsServiceProvider::class,
],
php artisan make:socialite Dropbox --spec=oauth1 --author=YourName --email=your@name.com
php artisan make:socialite Dropbox --spec=oauth1 --author=YourName --email=your@name.com --request_token_url=http://myapp.io/oauth/request_token --authorize_url=http://myapp.io/oauth/authorize --access_token_url=http://myapp.io/oauth/access_token --user_details_url=http://myapp.io/users/me
php artisan make:socialite Dropbox --spec=oauth2 --author=YourName --email=your@name.com
php artisan make:socialite Dropbox --spec=oauth2 --author=YourName --email=your@name.com --scopes=basic --authorize_url=http://myapp.io/oauth/authorize --access_token_url=http://myapp.io/oauth/access_token --user_details_url=http://myapp.io/users/me