Browse Source

Testing iOS URL code

master
Ryan Hammett 8 years ago
parent
commit
ee4222987d
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      slack-pixiv/commands/pixiv.rb

+ 5
- 0
slack-pixiv/commands/pixiv.rb View File

@ -11,6 +11,10 @@ module SlackMathbot
pixiv_url = "http://www.pixiv.net" + _match[:url][0..-2]
puts pixiv_url
# Create iOS URL
ios_url = "pixiv://illusts" + pixiv_url.split('=')[-1]
puts ios_url
# Scrape page title
title = Mechanize.new.get(pixiv_url).title
puts title
@ -25,6 +29,7 @@ module SlackMathbot
attachments: [
{
fallback: title + " - " + pixiv_url,
text: "<" + ios_url + "/|iOSTest"
title: title,
title_link: pixiv_url,
image_url: image_url,

Loading…
Cancel
Save