formatting

This commit is contained in:
Max Nuding 2024-04-10 11:33:44 +02:00
parent 899b034013
commit 4a3bbeec79
No known key found for this signature in database

View File

@ -335,13 +335,17 @@ class APnutI
return $this->makeRequest('get', $end_point, $parameters, $content_type, $follow_redirect); return $this->makeRequest('get', $end_point, $parameters, $content_type, $follow_redirect);
} }
public function getAuthURL() public function getAuthURL($append_redirect_query_string = null)
{ {
$redirect_uri = $this->redirect_uri;
if (!empty($append_redirect_query_string)) {
$redirect_uri .= $append_redirect_query_string;
}
$url = $this->auth_url $url = $this->auth_url
. '?client_id=' . '?client_id='
. $this->client_id . $this->client_id
. '&redirect_uri=' . '&redirect_uri='
. urlencode($this->redirect_uri) . urlencode($redirect_uri)
. '&scope='.$this->needed_scope . '&scope='.$this->needed_scope
. '&response_type=code'; . '&response_type=code';
$this->logger->debug('Auth URL: ' . $url); $this->logger->debug('Auth URL: ' . $url);