mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
14 lines
235 B
PHP
Executable File
14 lines
235 B
PHP
Executable File
<?php
|
|
|
|
$request = new HttpRequest();
|
|
$request->setUrl('http://mockbin.com/har');
|
|
$request->setMethod(HTTP_METH_PROPFIND);
|
|
|
|
try {
|
|
$response = $request->send();
|
|
|
|
echo $response->getBody();
|
|
} catch (HttpException $ex) {
|
|
echo $ex;
|
|
}
|