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";