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

Send a POST request

Source

public function post($url, $headers = [], $data = [], $options = []) {
	return $this->request($url, $headers, $data, Requests::POST, $options);
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.