@Grab(group='org.apache.httpcomponents', module='httpclient', version='4.1.2') import org.apache.http.client.methods.* import org.apache.http.impl.client.* import groovy.json.* httpclient = new DefaultHttpClient() // 指定IDの記事を取得する method = new HttpGet("http://localhost/?json=get_post&id=3") response = httpclient.execute(method) json = new JsonSlurper().parseText(response.getEntity().getContent().text) // タイトル println "title:${json.post.title}" // 日時 println "date:${json.post.date}" // 内容 println "content:${json.post.content}"
動作環境
groovy 1.8.4, JDK6 Update29, Wordpress 3.2.1, JSON API plugin 1.0.7
JSON APIのページ
http://wordpress.org/extend/plugins/json-api/
0 件のコメント:
コメントを投稿