Requests::post( $url,  $headers = array(),  $data = array(),  $options = array() )

Send a POST request


Source

File: wp-includes/class-requests.php

	public static function post($url, $headers = array(), $data = array(), $options = array()) {
		return self::request($url, $headers, $data, self::POST, $options);
	}