Inheritance: extends SocialiteProviders\Manager\OAuth2\AbstractProvider, implements Laravel\Socialite\Two\ProviderInterface
Example #1
0
 /**
  * {@inheritdoc}
  */
 protected function getCodeFields($state = null)
 {
     $fields = parent::getCodeFields($state);
     if ($this->reRequest) {
         $fields['revoke'] = '1';
     }
     return $fields;
 }