Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhaoda/socialite-mailru
MailRu OAuth2 Provider for Laravel Socialite
https://github.com/jhaoda/socialite-mailru
laravel laravel-5-package laravel-6-package laravel-socialite mailru mailru-oauth2-provider oauth2 php
Last synced: about 10 hours ago
JSON representation
MailRu OAuth2 Provider for Laravel Socialite
- Host: GitHub
- URL: https://github.com/jhaoda/socialite-mailru
- Owner: jhaoda
- License: mit
- Created: 2015-04-26T07:58:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-03-21T05:50:30.000Z (over 3 years ago)
- Last Synced: 2024-09-20T02:18:03.304Z (about 2 months ago)
- Topics: laravel, laravel-5-package, laravel-6-package, laravel-socialite, mailru, mailru-oauth2-provider, oauth2, php
- Language: PHP
- Size: 9.77 KB
- Stars: 23
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MailRu OAuth2 Provider for Laravel Socialite
### 1. Installation
`composer require jhaoda/socialite-mailru`
### 2. Service Provider
* Remove `Laravel\Socialite\SocialiteServiceProvider` from your `providers[]` array in `config\app.php` if you have added it already.
* Add `SocialiteProviders\Manager\ServiceProvider` to your `providers[]` array in `config\app.php`.For example:
```php
'providers' => [
// a whole bunch of providers
// remove 'Laravel\Socialite\SocialiteServiceProvider',
SocialiteProviders\Manager\ServiceProvider::class, // add
];
```
* Note: If you would like to use the Socialite Facade, you need to [install it](http://laravel.com/docs/5.2/authentication#social-authentication).### 3. Add the Event and Listeners
* Add `SocialiteProviders\Manager\SocialiteWasCalled::class` event to your `listen[]` array in `/Providers/EventServiceProvider`.
* Add your listeners (i.e. the ones from the providers) to the `SocialiteProviders\Manager\SocialiteWasCalled[]` that you just created.
* The listener that you add for this provider is `JhaoDa\SocialiteProviders\MailRu\MailRuExtendSocialite::class`.
* Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.
For example:
```php
/**
* The event handler mappings for the application.
*
* @var array
*/
protected $listen = [
SocialiteProviders\Manager\SocialiteWasCalled::class => [
JhaoDa\SocialiteProviders\MailRu\MailRuExtendSocialite::class
],
];
```### 4. Services Array and .env
Add to `config/services.php`:
```php
'mailru' => [
'client_id' => env('MAILRU_ID'),
'client_secret' => env('MAILRU_SECRET'),
'redirect' => env('MAILRU_REDIRECT'),
],
```Append provider values to your `.env` file:
```
// other values above
MAILRU_ID=your_app_id_for_the_service
MAILRU_SECRET=your_app_secret_for_the_service
MAILRU_REDIRECT=https://example.com/login
```