Skip to content

Instantly share code, notes, and snippets.

@aeg
Last active December 16, 2015 22:49
Show Gist options
  • Save aeg/5510314 to your computer and use it in GitHub Desktop.
Save aeg/5510314 to your computer and use it in GitHub Desktop.
短縮URLの展開。
http://blog.livedoor.jp/dankogai/
println expandURL("http://j.mp/dankogai")
public String expandURL(String urlStr) {
HttpURLClient http = new HttpURLClient(followRedirects:false)
def params = [ url:urlStr,
headers:['User-Agent':'Mozilla/5.0'] ]
def resp = http.request( params )
return resp.headers.'Location'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment