@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() // アクティブな著者の一覧を取得する method = new HttpGet("http://localhost/?json=get_author_index") response = httpclient.execute(method) json = new JsonSlurper().parseText(response.getEntity().getContent().text) json.authors.each { // slug println "slug:${it.slug}" // 姓 println "first_name:${it.first_name}" // 名 println "last_name:${it.last_name}" }
動作環境
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 件のコメント:
コメントを投稿