| Package Data | |
|---|---|
| Maintainer Username: | m1guelpf |
| Maintainer Contact: | hello@brianfaust.de (Brian Faust) |
| Package Create Date: | 2015-02-24 |
| Package Last Update: | 2025-04-29 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-07 15:04:32 |
| Package Statistics | |
|---|---|
| Total Downloads: | 312,547 |
| Monthly Downloads: | 4,532 |
| Daily Downloads: | 235 |
| Total Stars: | 63 |
| Total Watchers: | 3 |
| Total Forks: | 31 |
| Total Open Issues: | 0 |
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