我不是wordpress开发人员基本上我有wordpress网站的android应用程序模板。我的客户端发送一个Json Api将该文件上传到“ / wp-content / plugins / ”。我是android开发人员,没有服务器端的exp。那么任何一个人都可以指导我必须做的事情(我的意思是我要做的就是访问这条路径)。
答案 0 :(得分:1)
JSON API WP
您只需调用最近的api插件,例如 - ..... / json = get_recent_posts
*response for the get_recent_post*
{
"status": "ok",
"count": 10,
"count_total": 79,
"pages": 7,
"posts": [
{ ... },
{ ... },
...
]
}
显式模式示例:
http://www.example.org/?json=get_recent_posts
http://www.example.org/?json=get_post&post_id=47
http://www.example.org/?json=get_tag_posts&tag_slug=banana
配置了用户友好的永久链接:
http://www.example.org/api/get_recent_posts/
http://www.example.org/api/get_post/?post_id=47
http://www.example.org/api/get_tag_posts/?tag_slug=banana
有关详细信息,请点击此链接
https://wordpress.org/plugins/json-api/other_notes/
而不是json api尝试新的wp rest api 2,这是wp-4.4的特色
下载插件并安装它。
只需输入您网站末尾的/ wp-json / wp / v2 /帖子,即可获得所有帖子。
获取所有帖子
www.mysite.com/wp-json/wp/v2/posts
搜索功能 - 搜索测试帖子
/wp-json/wp/v2/posts?filter[s]=test
此链接提供了更多详细信息 http://v2.wp-api.org/reference/posts/
注意最佳结果使用WP的最新版本