Send a GET request
Source
public static function get($url, $headers = [], $options = []) {
return self::request($url, $headers, null, self::GET, $options);
}
Send a GET request
public static function get($url, $headers = [], $options = []) {
return self::request($url, $headers, null, self::GET, $options);
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.