Created
February 21, 2016 18:30
-
-
Save cherenkov/9face583845c15bec3da to your computer and use it in GitHub Desktop.
アメブロの画像URLを取得する #pictruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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