class Egalite::Keitai::Redirector

Public Instance Methods

get(crypted_url) click to toggle source
# File lib/egalite/keitai/keitai.rb, line 95
def get(crypted_url)
  url = URLSession.decrypt(crypted_url, redirector_crypt_key)
  "<html><body>外部サイトへ移動しようとしています。以下のリンクをクリックしてください。<br/><br/><a href='#{URI.escape(url)}'>リンク</a></body></html>"
end
redirector_crypt_key() click to toggle source
# File lib/egalite/keitai/keitai.rb, line 99
def redirector_crypt_key
  "Example1"
end