如何使用带 R 的 Azure 通知中心向客户手机发送短信?
How to send sms to customers mobiles using Azure Notification Hub with R?
我想使用带有 R.I 的 Azure 通知中心向客户手机发送短信通知,尝试使用 twilio 但在 twilio 中我们必须先注册手机号码,我无法发送未注册的消息 numbers.That这就是我选择 azure 通知的原因 hub.Can 你建议我如何使用带 R 的 azure 通知中心向 android 发送消息?
在 twilio 中尝试过:
Sys.setenv(TWILIO_SID = "xxxxxxxxxxx")
Sys.setenv(TWILIO_TOKEN = "xxxxxxxxxxxxxxxx")
# store the numbers in some variables
my_phone_number <- "zzzzzzzzzz" ###n user's number
twilios_phone_number <- "zzzzzzzzzz" ### given number by twilio
# Now we can send away!
tw_send_message(from = twilios_phone_number, to = my_phone_number,
body = "Hello from R ")
Azure 通知中心不提供短信服务。它适用于推送通知,但要利用这些通知,您需要有一个移动应用程序。 Here您可以找到更多详细信息。
我想使用带有 R.I 的 Azure 通知中心向客户手机发送短信通知,尝试使用 twilio 但在 twilio 中我们必须先注册手机号码,我无法发送未注册的消息 numbers.That这就是我选择 azure 通知的原因 hub.Can 你建议我如何使用带 R 的 azure 通知中心向 android 发送消息?
在 twilio 中尝试过:
Sys.setenv(TWILIO_SID = "xxxxxxxxxxx")
Sys.setenv(TWILIO_TOKEN = "xxxxxxxxxxxxxxxx")
# store the numbers in some variables
my_phone_number <- "zzzzzzzzzz" ###n user's number
twilios_phone_number <- "zzzzzzzzzz" ### given number by twilio
# Now we can send away!
tw_send_message(from = twilios_phone_number, to = my_phone_number,
body = "Hello from R ")
Azure 通知中心不提供短信服务。它适用于推送通知,但要利用这些通知,您需要有一个移动应用程序。 Here您可以找到更多详细信息。