Ruby - 处理传入的HTTP POST?

时间:2016-06-24 04:49:24

标签: ruby heroku web-development-server

我似乎缺少一些基本的东西,因为我不知道如何捕获然后处理传入的HTTP Post。我是第一次学习Ruby的C / C ++开发人员,我从来没有处理过我生活中的网络内容。

我正在编写我的第一个Slack Webhook,而且slack会将与此类似的数据发送到我的网络服务器:

token=ZLAmT1sKurm2KwvmYDR9hbiV
team_id=T0001
team_domain=example
channel_id=C2147483705
channel_name=test
user_id=U2147483697
user_name=Steve
command=/weather
text=94070
response_url=https://hooks.slack.com/commands/1234/5678

我不知道如何接受此POST请求,并将其发送到我的应用程序进行处理。

我认为它类似于处理终端应用程序的argvargc,但我写了前几行。

我已经找到了解决方案,但似乎我在问错误的问题。

我目前有一个在heroku上运行的Puma / Sinatra网络服务器,Procfile包含:

web: bundle exec puma -p $PORT(我也不知道分配了哪个端口。)

1 个答案:

答案 0 :(得分:1)

this answer类似,Sinatra提供DSL来接受POST请求。在块内,可以在params哈希中访问数据。像

这样的东西
post '/my_endpoint' do
  content_type :json
  @team_id = params[:team_id]
  res = do_stuff_with_channel_id params[:channel_id] # passing the value to a custom method example
  {my_response: res}.to_json #simple example of returning JSON in response 
end

Sinatra Docs on routing

HTH