Webiny\Component\TwitterOAuth\TwitterOAuth::post PHP Method

post() public method

Make a POST request to Twitter API.
public post ( string $url, array $params = [] ) : string | array
$url string Api url.
$params array Additional parameters.
return string | array Api response (if json) it will be returned as array.
    public function post($url, array $params = [])
    {
        return $this->instance->post($url, $params);
    }