Exemplo n.º 1
0
 /**
  * Flush the current access token and return the authorization url
  * @param $redirectUri
  * @return string
  */
 public function getAuthorizationUrl($redirectUri)
 {
     $this->_accessToken = null;
     $this->storage->flush('token');
     return $this->_getProvider(['redirectUri' => $redirectUri])->getAuthorizationUrl();
 }