-2
アプリはREST APIを使用してメッセージを送信しますが、そのまま「to」番号がアプリにハードコードされています。その数字をユーザーが入力した値にしたいと思います。Rubyに電話番号を入力する
HTML:
<!DOCTYPE html>
<head>
<title>Joe's Web App</title>
<link rel="stylesheet" type="text/css" href="index.css" media="screen"/>
</head>
<body>
<div class="content">
<div class="words">
<h1>My Name</h1>
<p>
Insert your number below to recieve a text!
</p>
</div>
<input type="tel" placeholder="Phone Number" name="number">
<input type="submit">
</div>
</body>
ルビー:
require 'rubygems'
require 'twilio-ruby'
account_sid = 'AC26b29f734e8145f6df3497eb6ca50205'
auth_token = 'my auth token'
@client = Twilio::REST::Client.new account_sid, auth_token
@client.account.messages.create({
:from => 'Twilio Number',
:to => 'phone number',
:body => 'Hey this is Joe!',
})
私はあなたがラックに構築する場合、それは簡単なことだと思います。詳細はhttps://codenoble.com/blog/ruby-web-applications-without-rails/ –
だから、あなたはsinatraにこれを実装したいのですか? – marmeladze
ようこそスタックオーバーフロー。あなたが望むものは完全にはっきりしていません。 –