Skip to content

Instantly share code, notes, and snippets.

@cherenkov
Created February 21, 2016 18:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cherenkov/9face583845c15bec3da to your computer and use it in GitHub Desktop.
Save cherenkov/9face583845c15bec3da to your computer and use it in GitHub Desktop.
アメブロの画像URLを取得する #pictruby
def main
url = Popup.input "amebloのURLを入力してください"
url = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D'" + url + "'%20and%20xpath%3D'%2F%2Fimg%5Bcontains(%40src%2C%20%22http%3A%2F%2Fstat.ameba.jp%2Fuser_images%2F%22)%5D%5Bnot(contains(%40src%2C%20%22%3Fcpd%3D%22))%5D'&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys"
json = Browser.json url
p json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment