1
0
mirror of https://gitee.com/tawords/tawords-docs synced 2025-01-31 04:50:28 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
tawords-docs/docs/manual/api/introduction.md

13 lines
947 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

为了应对各种各样的扩展需求,先提供统一接口供开发者使用。
接口分为`前端接口``后端接口`
浏览器中运行的JavaScript脚本可以通过`前端接口`与服务器进行交流,
开发应用/插件时PHP文件内可以使用`后端接口`获取或设置相关数据。
除公开数据外,涉及到用户相关操作`前端接口`均需要提供相关参数以验证用户是否登录,避免`前端接口`被滥用。
接口分为以下几类:
- 公开类,包括前台文章,浏览量,点赞量等无需用户登录即可调用
- 数据写入类,表单提交调用,例如评论,点赞等
- 用户账户类,用户登录状态下,对账户信息进行管理(读取、填写、修改、删除等)
- 管理员类仅管理员可使用包括网站全局配置后台的一系列配置例如网站标题第三方统计服务器环境查看phpinfo等。