我们部署了一个wordpress的实例,并安装了一个
JSON API plug in
使用这个插件,你可以做出简单的HTTP GET请求,比如:
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
JSON中还有一个回应:
{ "status": "ok","count": 1,"count_total": 1,"pages": 1,"posts": [ {...}}
我的问题是如何在我的Rails应用程序中进行这些类型的请求(然后解析返回的JSON).我即将开始从头开始写东西,但我想有一些很好的现有工具可以管理这样的东西.基本上,当Ruby包装器尚未可用时,我从未尝试连接到API.你能帮助noob开始吗?