Files
php-curl-class/examples/github_create_gist.php
T
2020-04-17 18:47:59 -07:00

24 lines
486 B
PHP

<?php
require __DIR__ . '/../vendor/autoload.php';
use Curl\Curl;
$content = <<<EOF
<?php
echo 'hello, world';
EOF;
$curl = new Curl();
$curl->setHeader('Content-Type', 'application/json');
$curl->post('https://api.github.com/gists', array(
'description' => 'PHP-Curl-Class test.',
'public' => 'true',
'files' => array(
'Untitled.php' => array(
'content' => $content,
),
),
));
echo 'Gist created at ' . $curl->response->html_url . "\n";