Merge pull request #47 from robertpitt/master

Set approval prompt to auto from force
1.0
Phil Sturgeon 2014-01-12 06:40:25 -08:00
commit dda8398ad3
1 changed files with 1 additions and 1 deletions

View File

@ -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);