···35 public function getParRequestUri(array $body):UriInterface{
36 // send the request with the same method and parameters as the token requests
37 // @link https://datatracker.ietf.org/doc/html/rfc9126#name-request
38- print_r($this->parAuthorizationURL);
39 $response = $this->sendAccessTokenRequest($this->parAuthorizationURL, $body);
40 $status = $response->getStatusCode();
41 $json = MessageUtil::decodeJSON($response, true);
42- print_r($body);
43- print_r($json);
4445 // something went horribly wrong
46 if($status !== 200){
···35 public function getParRequestUri(array $body):UriInterface{
36 // send the request with the same method and parameters as the token requests
37 // @link https://datatracker.ietf.org/doc/html/rfc9126#name-request
038 $response = $this->sendAccessTokenRequest($this->parAuthorizationURL, $body);
39 $status = $response->getStatusCode();
40 $json = MessageUtil::decodeJSON($response, true);
004142 // something went horribly wrong
43 if($status !== 200){