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

Send a POST request

Source

File: wp-includes/Requests/Session.php

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

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_session/post