通过查看github gist api,我了解到可以在没有任何api密钥/身份验证的情况下为匿名用户创建gist create。是这样吗?
我找不到下列问题的答案:
是否要创建任何限制(gist的数量)等?
有没有什么例子可以让我从表单文本输入字段中发布代码来创建一个gist?我找不到。
谢谢你提供这方面的信息。

最佳答案

对。
Github API V3文档:
对于使用基本身份验证或OAuth的请求,每小时最多可以发出5000个请求。对于未经身份验证的请求,速率限制允许您每小时最多发出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>

有关更多信息,请参阅documentation

关于php - 如何使用API​​创建GitHub Gist?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18667303/

10-14 01:56