5

通过查看 GitHub Gist API,我了解到可以为匿名用户创建 Gist,而无需任何 API 密钥/身份验证。是这样吗?

我找不到以下问题的答案:

  1. 是否有要创建的限制(要点数量)等?
  2. 有没有我可以从表单文本输入字段中发布代码以创建要点的示例?我找不到任何东西。

感谢您提供有关此的任何信息。

4

1 回答 1

8

是的。

来自Github API V3文档:

对于使用基本身份验证或 OAuth 的请求,您每小时最多可以发出 5,000 个请求。对于未经身份验证的请求,速率限制允许您每小时最多发出 60 个请求。

要创建 gist,您可以POST按如下方式发送请求:

POST /gists

这是我做的一个例子:

<?php
if (isset($_POST['button'])) 
{    
    $code = $_POST['code'];

    # Creating the array
    $data = array(
        'description' => 'description for your gist',
        'public' => 1,
        'files' => array(
            'foo.php' => array('content' => 'sdsd'),
        ),
    );                               
    $data_string = json_encode($data);

    # Sending the data using cURL
    $url = 'https://api.github.com/gists';
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $response = curl_exec($ch);
    curl_close($ch);

    # Parsing the response
    $decoded = json_decode($response, TRUE);
    $gistlink = $decoded['html_url'];

    echo $gistlink;    
}
?>

<form action="" method="post">
Code: 
<textarea name="code" cols="25" rows="10"/> </textarea>
<input type="submit" name="button"/>
</form>

有关详细信息,请参阅文档

于 2013-09-06T22:15:02.087 回答