在没有 Gems 的情况下从 Rails 应用程序发送 SMS 消息
创建 ruby 应用程序以使用 API 发送 SMS 需要哪些链接/密钥。无需为其编写 gem?我有该服务的链接和 API 密钥。我需要知道从哪里开始。我是 ruby 新手,我正在尝试遵循本教程,但如果不知道不使用 clickatell 我做什么,似乎无法到达任何地方。 http://lukeredpath.co.uk/blog /sending-sms-messages-from-your-rails-application.html
What are the links/keys needed to create a ruby application to send an SMS using an API. Without having to write gems for it? I have a link to the service and an API key. I need to know where to start. Im new to ruby and am trying to follow this tutorial but cant seem to get anywhere without knowing what i do without using clickatell. http://lukeredpath.co.uk/blog/sending-sms-messages-from-your-rails-application.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要发送实际的 HTTP 请求,您可以使用几个 ruby HTTP 库/gems 之一,例如 REST 客户端、httparty 或普通 Net/HTTP。
最简单的可能是 REST 客户端,例如:
祝好
Tobias
For sending the actual HTTP request, you can use one of the several ruby HTTP libraries/gems, like REST Client, httparty or plain Net/HTTP.
The most simple one might be REST Client, example:
Best regards
Tobias
一个朋友为 routo 消息系统做了一个 gem
https://github.com/weboglobin/Routo
你可以使用它,或者只是将它作为灵感
There is a gem done by a friend for the routo messaging system
https://github.com/weboglobin/Routo
you can use it, or just take it as an inspiration