在没有 Gems 的情况下从 Rails 应用程序发送 SMS 消息

发布于 2024-12-08 14:03:08 字数 344 浏览 3 评论 0原文

创建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦亿 2024-12-15 14:03:08

要发送实际的 HTTP 请求,您可以使用几个 ruby​​ HTTP 库/gems 之一,例如 REST 客户端、httparty 或普通 Net/HTTP

最简单的可能是 REST 客户端,例如:

require 'rest_client'

API_URL = 'http://yourapiurl.com/resource'
API_KEY = 'thatoneapikey'

RestClient.post API_URL, :api_key => API_KEY, :number => '7812637813', :body => 'Foo SMS Text Bar Baz'

祝好

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:

require 'rest_client'

API_URL = 'http://yourapiurl.com/resource'
API_KEY = 'thatoneapikey'

RestClient.post API_URL, :api_key => API_KEY, :number => '7812637813', :body => 'Foo SMS Text Bar Baz'

Best regards

Tobias

〆凄凉。 2024-12-15 14:03:08

一个朋友为 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文