Skip to content

Instantly share code, notes, and snippets.

@lornajane
Created May 2, 2013 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save lornajane/5502348 to your computer and use it in GitHub Desktop.
Save lornajane/5502348 to your computer and use it in GitHub Desktop.
create a gist using PHP and streams
<?php
include "github-creds.php"; // sets $access_token
ini_set('user_agent', "PHP"); // github requires this
$api = 'https://api.github.com';
$url = $api . '/gists'; // no user info because we're sending auth
// prepare the body data
$data = json_encode(array(
'description' => 'Inspiring Poetry',
'public' => 'true',
'files' => array(
'poem.txt' => array(
'content' => 'If I had the time, I\'d make a rhyme'
)
)
));
// set up the request context
$options = ["http" => [
"method" => "POST",
"header" => ["Authorization: token " . $access_token,
"Content-Type: application/json"],
"content" => $data
]];
$context = stream_context_create($options);
// make the request
$response = file_get_contents($url, false, $context);
@vishal068
Copy link

Screenshot from 2021-04-03 11-34-37

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment