SaeTOAuthV2::post PHP Method

post() public method

POST wreapper for oAuthRequest.
public post ( $url, $parameters = [], $multi = false ) : mixed
return mixed
    function post($url, $parameters = array(), $multi = false)
    {
        $response = $this->oAuthRequest($url, 'POST', $parameters, $multi);
        if ($this->format === 'json' && $this->decode_json) {
            return json_decode($response, true);
        }
        return $response;
    }