@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_page_index") response = httpclient.execute(method) json = new JsonSlurper().parseText(response.getEntity().getContent().text) output = { // タイトル println "title:${it.title}" // url println "url:${it.url}" // 子ページ it.children.each { child -> output.call(child) } } json.pages.each output
動作環境
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 件のコメント:
コメントを投稿