我似乎缺少一些基本的东西,因为我不知道如何捕获然后处理传入的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请求,并将其发送到我的应用程序进行处理。
我认为它类似于处理终端应用程序的argv
和argc
,但我写了前几行。
我已经找到了解决方案,但似乎我在问错误的问题。
我目前有一个在heroku上运行的Puma / Sinatra网络服务器,Procfile包含:
web: bundle exec puma -p $PORT
(我也不知道分配了哪个端口。)
答案 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
HTH