Example #1
0
 /**
  * @return string
  */
 protected function generateAuthUrl()
 {
     $auth_url = $this->exod_app->getAuthUrl();
     $client_id = $this->exod_app->getClientId();
     $response_type = $this->exod_app->getResponseType();
     $redirect_uri = urlencode($this->exod_app->getRedirectUri());
     return "{$auth_url}?client_id={$client_id}&response_type={$response_type}&redirect_uri={$redirect_uri}";
 }