XY笔记 - 开源API测试平台
47 | 48 |
50 | ├── .gitignore ├── favicon.ico ├── public ├── favicon.ico ├── One │ ├── _coverpage.md │ ├── README.md │ └── index.html ├── Bing │ ├── _coverpage.md │ ├── index.html │ └── README.md ├── day │ ├── _coverpage.md │ ├── README.md │ └── index.html ├── Novel │ ├── _coverpage.md │ ├── README.md │ └── index.html ├── api │ ├── _coverpage.md │ ├── README.md │ └── index.html ├── admin │ └── index.html ├── error │ ├── 403.html │ └── 404.html ├── index.html ├── static │ ├── test.css │ ├── test.js │ └── vue.css ├── test.html └── user │ ├── user.html │ ├── login.html │ └── reg.html ├── index.php ├── core ├── utils │ ├── Updata.php │ ├── LoadImage.php │ ├── Http.php │ └── utils.php ├── init.php ├── lib │ ├── data │ │ ├── config.php │ │ └── route.php │ ├── Check.php │ ├── route │ │ └── route.php │ ├── header.php │ ├── AutoLoad.php │ ├── Auth │ │ └── Authentication.php │ ├── db │ │ ├── DB.php │ │ ├── MySQL.php │ │ └── SQL.php │ └── lib.php ├── App.php ├── map │ └── map.php ├── Exception │ └── SystemException.php ├── controller │ ├── Monitor.php │ └── Controller.php └── route │ └── route.php ├── _coverpage.md ├── app ├── controller │ ├── test.php │ ├── admin.php │ ├── email.php │ ├── bt.php │ ├── day.php │ ├── one.php │ ├── sports.php │ ├── img.php │ ├── weibo.php │ ├── wechat.php │ ├── novel.php │ ├── news.php │ ├── api.php │ ├── Bing.php │ └── user.php ├── route │ └── route.php ├── model │ ├── test.php │ ├── Aliyun.php │ ├── Lunar.php │ └── BT.php └── config │ ├── config.inc.php │ ├── bookSources.json │ └── BtConfig.php ├── test.php ├── nginx.htaccess ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | test.php 2 | /sql 3 | /app/cookie 4 | config.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xygengcn/OpenApi-php/HEAD/favicon.ico -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xygengcn/OpenApi-php/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 一言一句记录生活 4 | 5 | [GitHub](https://github.com/xygengcn/OpenApi) 6 | [Get Started](#main) -------------------------------------------------------------------------------- /public/Bing/_coverpage.md: -------------------------------------------------------------------------------- 1 | # 必应每日一图 2 | 3 | > 必应每日一图,每周七图 4 | 5 | [GitHub](https://github.com/xygengcn/OpenApi) 6 | [Get Started](#main) -------------------------------------------------------------------------------- /public/day/_coverpage.md: -------------------------------------------------------------------------------- 1 | # 万年历接口 2 | 3 | > 万年历接口,生活每一天 4 | 5 | [GitHub](https://github.com/xygengcn/OpenApi) 6 | [Get Started](#main) -------------------------------------------------------------------------------- /public/Novel/_coverpage.md: -------------------------------------------------------------------------------- 1 | # XY小说接口 2 | 3 | > 免费小说接口,网络书源接口 4 | 5 | [GitHub](https://github.com/xygengcn/OpenApi) 6 | [Get Started](#main) -------------------------------------------------------------------------------- /public/api/_coverpage.md: -------------------------------------------------------------------------------- 1 | # OpenApi开源接口集合 2 | 3 | > 开源Api,关心生活琐事 4 | 5 | [GitHub](https://github.com/xygengcn/OpenApi) 6 | [Get Started](#main) -------------------------------------------------------------------------------- /public/Novel/README.md: -------------------------------------------------------------------------------- 1 | ## 每日一图 2 | 为了方便随机切换图片,我们可以使用必应每日一图来参考写出接口,方便我们切换图片和收集图片。全新代码构建,全新界面。 3 | 4 | [页面展示](https://api.xygeng.cn/Novel/index.html) 5 | 6 | -------------------------------------------------------------------------------- /core/utils/Updata.php: -------------------------------------------------------------------------------- 1 | 开源api系统,将会汇集搜集开源的所有api接口,个人开发简版操作. 4 | 5 | - ONE一句,必应每日一图,新闻接口,宝塔接口,小说接口 6 | - 微信接口,球赛接口,邮件接口 7 | 8 | 9 | 10 | [GitHub](https://github.com/xygengcn/OpenApi) 11 | [Get Started](#main) -------------------------------------------------------------------------------- /core/init.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |39 | Github 40 | Get Started 41 |
42 |
50 | {title} {content} |