2012年5月21日月曜日

groovyとmongolabのREST APIで、コレクションを列挙する

groovyとmongolabのREST APIで、コレクションを列挙するには、以下のコードを実行します。
@Grab(group='org.apache.httpcomponents', module='httpclient', version='4.1.3')
import org.apache.http.client.methods.*
import org.apache.http.impl.client.*
import groovy.json.*

def apikey = "your-key"
def base = "https://api.mongolab.com/api/1"
def db = "mydb"
def httpclient = new DefaultHttpClient()
def method = new HttpGet("${base}/databases/${db}/collections?apiKey=${apikey}")
response = httpclient.execute(method)

println response.getStatusLine().getStatusCode()
def json = new JsonSlurper().parseText(response.getEntity().getContent().text)
for(col in json){
  println "name:${col}"
}

動作環境
groovy 1.8.6

関連情報
groovyとMongoDBのまとめ

0 件のコメント:

コメントを投稿