moefront / typecho-plugin-restful
Yet another awesome Typecho plugin to make your blog RESTful.
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 82
Watchers: 6
Forks: 24
Open Issues: 6
Type:plugin
Requires
- php: >=5.3.0
- ext-curl: *
Requires (Dev)
- catfan/medoo: ~1.5
- guiguiboy/php-cli-progress-bar: ^0.0.4
- guzzlehttp/guzzle: ~6.0
- phpunit/phpunit: ^6.0
- squizlabs/php_codesniffer: ^3.2
- ssx/php-serve: ^0.0.3
This package is not auto-updated.
Last update: 2024-11-10 06:12:23 UTC
README
这是一个将 Typecho 博客 RESTful 化的插件。启用此插件,你可以通过请求 API 向站点请求或写入信息(获取文章内容、获取评论、添加评论等)。
食用方法
常规
下载插件并解压,将解压后的目录重命名为 Restful
(区分大小写),然后到后台插件管理页面启用并设置即可。
使用 Composer 安装
cd /path/to/typecho/usr/plugins
composer create-project moefront/typecho-plugin-restful Restful --prefer-dist --stability=dev
chown www:www -R Restful
API
下面假设您的站点已经开启了地址重写(伪静态);如果没有的话,那么需要在下文列出的请求的 URI 前加上 /index.php
,例如:/api/posts
=> /index.php/api/posts
.
文章列表
GET /api/posts
PS: showDigest
有两个可选的值,分别为 more
和 excerpt
. 当选用 more
模式时,插件将返回文章中 <!--more-->
标签前的内容解析后的 HTML;选用 excerpt
模式时,插件将对解析后的文章过滤 HTML 标签后,返回前 limit
个字符。默认 limit
的值为 200.
页面列表
GET /api/pages
分类列表
GET /api/categories
标签列表
GET /api/tags
文章/页面详情
GET /api/post
评论列表
GET /api/comments
PS: 如果带上 Cookie 请求,会显示当前 Cookie 记住的用户所发布的待审核的评论。
最近评论
GET /api/recentComments
发表评论
POST /api/comment
PS:此处Content-Type
为application/json
, 也就是说你应当以 JSON 格式提交数据。
PS2: uid 和 authCode 可以在 Cookie 中找到(形如 hash__typecho_uid
和 hash__typecho_authCode
的内容)。如果直接带上 Cookie 请求此 API 则不再需要带上 uid
和 authCode
参数。请求时需要带上合法的 User-Agent.
设置项
GET /api/settings
用户信息
GET /api/users
归档
GET /api/archives
PS:默认按从新到旧 (desc) 顺序排列文章。
PS: showDigest
和 limit
参数的使用参见 /api/posts
部分。
其它
自定义 URI 前缀
默认情况下 Restful 插件会占用 /api/*
用于不同的接口。如果该 URI 有其它用途,或与其它插件冲突,或者由于某些不可描述的原因用户不希望暴露该接口,可以选择通过修改 config.inc.php
自定义前缀。
例如,在 config.inc.php
文件中加入下列内容:
define('__TYPECHO_RESTFUL_PREFIX__', '/rest/');
重新启用插件,此时你可以通过 /rest/*
访问相关 API.
License
typecho-plugin-restful
is MIT licensed.
Since it is a derivative of Typecho which is GPLv2 licensed, you may also need to observe GPLv2 when you are redistributing this plugin.