参考介绍:https://www.bilibili.com/video/BV1PZ42117u6/
安装使用说明:
1、请把PublishArticle.php里面 const post_password = "changeme2";(大约在13行左右)把changeme2改为新密码,注意一定要修改!!!在发布时需要填写该密码;
2、密码修改后,把文件PublishArticle.php上传到Eyoucms网站的/application/api/controller目录下。接口更新方法也相同。
3、此接口只支持文章模型的发布
4、如发布失败的话,请检查Eyoucms网站是否已配置TP框架pathinfo信息,
对应的XXX.com.conf 的配置文件进行增加 TP框架pathinfo配置
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?s=/$1 last;
}
}
#TP框架pathinfo配置
location ~ \.php/?.*$ {
include fastcgi_params;
fastcgi_index index.php;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_param PHP_VALUE open_basedir=$document_root:/tmp/:/proc/;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
插件接口各字段说明:
1、http://www.xxx.com/api/publishArticle/insertArchives?__post_flag=post //网站发布url,http://xxx使用要发布的网站首页代替
2、__post_password //发布密码
3、typeid//栏目ID,取得方法:后台管理->栏目管理->ID列的数字
4、channel//频道模型,取得方法:后台管理->高级选项->频道模型->取得“文章模型”的ID
5、title //文章标题
6、content //文章内容