mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-24 14:19:17 +00:00
30 lines
746 B
PHP
30 lines
746 B
PHP
<?php
|
|
require '../src/Curl/Curl.php';
|
|
|
|
use \Curl\Curl;
|
|
|
|
define('GITTIP_USERNAME', 'XXXXXXXXXX');
|
|
define('GITTIP_API_KEY', 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX');
|
|
|
|
$data = array(
|
|
array(
|
|
'username' => 'user' . mt_rand(),
|
|
'platform' => 'gittip',
|
|
'amount' => '0.02',
|
|
),
|
|
array(
|
|
'username' => 'user' . mt_rand(),
|
|
'platform' => 'gittip',
|
|
'amount' => '0.02',
|
|
),
|
|
);
|
|
|
|
$curl = new Curl();
|
|
$curl->setHeader('Content-Type', 'application/json');
|
|
$curl->setBasicAuthentication(GITTIP_API_KEY);
|
|
$curl->post('https://www.gittip.com/' . GITTIP_USERNAME . '/tips.json', json_encode($data));
|
|
|
|
foreach ($curl->response as $tip) {
|
|
echo $tip->amount . ' given to ' . $tip->username . '.' . "\n";
|
|
}
|