【发布时间】:2019-01-09 02:54:29
【问题描述】:
我希望我的 firebase 向我的应用程序(以颤振编码)发送短信。 firebase 可以使用服务器发送短信吗?
【问题讨论】:
标签: firebase firebase-realtime-database sms twilio flutter
我希望我的 firebase 向我的应用程序(以颤振编码)发送短信。 firebase 可以使用服务器发送短信吗?
【问题讨论】:
标签: firebase firebase-realtime-database sms twilio flutter
您可以在 Cloud Function 中使用 Twilio 第三方服务。
看看这些文档:
https://cloud.google.com/appengine/docs/flexible/nodejs/using-sms-and-voice-services-via-twilio
https://cloud.google.com/community/tutorials/cloud-functions-twilio-sms(展示了如何将 Twilio 集成到云函数中)
Firebase Cloud Functions 文档位于:https://firebase.google.com/docs/functions/
请注意,您必须订阅 Blaze 或 Flame 计划,因为“Spark 计划仅允许对 Google 拥有的服务的出站网络请求”。查看https://firebase.google.com/pricing/ 并将鼠标悬停在 Cloud Functions 旁边的问号上以了解更多详细信息。
【讨论】: