Fixed make_Request casing

This commit is contained in:
aymm 2021-03-10 19:44:46 +00:00
parent 88fe14f6ec
commit 588fc2846e

View File

@ -295,7 +295,7 @@ class APnutI
$end_point .= '?'.http_build_query($parameters); $end_point .= '?'.http_build_query($parameters);
$parameters = []; $parameters = [];
} }
return $this->make_request('get', $end_point, $parameters, $content_type); return $this->makeRequest('get', $end_point, $parameters, $content_type);
} }
public function getAuthURL() public function getAuthURL()
@ -489,7 +489,7 @@ class APnutI
'NotAuthorizedException when getting post, trying without access token' 'NotAuthorizedException when getting post, trying without access token'
); );
//try again not authorized //try again not authorized
$r = $this->make_request( $r = $this->makeRequest(
'/get', '/get',
'/posts/' . $post_id, '/posts/' . $post_id,
$args, $args,