示例#1
0
 public function testPost()
 {
     $url = 'http://rest.akismet.com/1.1/verify-key';
     $data = array('blog' => 'http://domain.com', 'key' => '');
     $headers = array('user-agent' => 'Hello 1.0 SelvinOrtiz/Hello');
     $response = Hello::createPostRequest($url, $data)->send();
     $this->assertEquals('invalid', (string) $response);
     $this->assertInstanceOf('SelvinOrtiz\\Http\\Hello\\HttpResponse', $response);
 }
示例#2
0
<?php

require_once __DIR__ . '/../vendor/autoload.php';
use SelvinOrtiz\Http\Hello\Hello;
use SelvinOrtiz\Http\Hello\HttpMethod;
$url = 'http://rest.akismet.com/1.1/verify-key';
$data = array('blog' => 'http://domain.com', 'key' => '');
$headers = array('user-agent' => 'Hello 1.0 SelvinOrtiz/Hello');
$response = Hello::post($url, $data, $headers);
echo '<pre>';
print_r($response);
exit('</pre>');