diff --git a/src/League/OAuth2/Client/Provider/IdentityProvider.php b/src/League/OAuth2/Client/Provider/IdentityProvider.php index d01a25c..00b69db 100644 --- a/src/League/OAuth2/Client/Provider/IdentityProvider.php +++ b/src/League/OAuth2/Client/Provider/IdentityProvider.php @@ -67,7 +67,7 @@ abstract class IdentityProvider 'state' => $state, 'scope' => is_array($this->scopes) ? implode($this->scopeSeperator, $this->scopes) : $this->scopes, 'response_type' => isset($options['response_type']) ? $options['response_type'] : 'code', - 'approval_prompt' => 'force' // - google force-recheck + 'approval_prompt' => 'auto' ); return $this->urlAuthorize().'?'.http_build_query($params);