adnanhussainturki/gist
一个简单、轻量级的PHP库,用于访问GitHub的Gist API
1.0
2021-02-01 19:54 UTC
Requires
- php: >=5.6.0
This package is auto-updated.
Last update: 2024-09-20 09:16:31 UTC
README
Gist
Gist的PHP API包装器。
安装
使用composer将此包安装到您的PHP项目中
composer require adnanhussainturki/gist
在您的后端管理Gist
- 列出所有您的Gist
- 创建Gist
- 查看Gist
- 编辑Gist
- 删除Gist
- 查看公开的Gist(可以使用未认证的Gist查看)
<?php
use myPHPnotes\Gist;
use myPHPnotes\GistObject;
require_once "../Gist.php";
require_once "../GistObject.php";
$gist = new Gist();
$authorisedGist = new Gist("AdnanHussainTurki", "ddbfd0fb1c955cc3aa7a539cff359ed43d5185ba");
<!-- List All Public Gists -->
$page = 1;
$perPage = 100;
$gist->getPublicGists($page, $perPage);
<!-- All Public Gists Pulled as JSON -->
<!-- Creating Gist -->
$GistObject = new GistObject("TEST", true);
$GistObject->addContent("test.txt", "This is a dfdasf test");
$GistObject->addContent("test2.txt", "This is a dasfdasf test");
$GistObject->addContent("test.txt", "This is a adsfewwe test");
$authorisedGist->create($GistObject); // ID of the Gist will be returned in JSON
<!-- Gist Created -->
<!-- Editing Gist -->
$GistObject = new GistObject("TEST", true);
$GistObject->addContent("test.txt", "This is a edited dfdasf test");
$GistObject->addContent("test2.txt", "This is a edited dasfdasf test");
$GistObject->addContent("test.txt", "This is a edited adsfewwe test");
$authorisedGist->edit( "<--ID_OF_GIST_TO_BE_EDITED-->", $GistObject); // ID of the Gist will be returned in JSON
<!-- Gist Edited -->
<!-- Deleting Gist -->
$authorisedGistObject->delete("ID_OF_THE_GIST");
<!-- Gist Deleted -->
<!-- My Gists -->
$page = 1;
$perPage = 100;
$gist->myGists($page, $perPage);
<!-- My Gist Pulled as JSON -->
?>
在印度构建
Adnan Hussain Turki的一个辅助项目。
欢迎贡献者.. :).