mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
21 lines
413 B
PHP
Executable File
21 lines
413 B
PHP
Executable File
<?php
|
|
|
|
$client = new http\Client;
|
|
$request = new http\Client\Request;
|
|
|
|
$body = new http\Message\Body;
|
|
$body->append('Hello World');
|
|
|
|
$request->setRequestUrl('http://mockbin.com/har');
|
|
$request->setRequestMethod('POST');
|
|
$request->setBody($body);
|
|
|
|
$request->setHeaders(array(
|
|
'content-type' => 'text/plain'
|
|
));
|
|
|
|
$client->enqueue($request)->send();
|
|
$response = $client->getResponse();
|
|
|
|
echo $response->getBody();
|