如何使用云中的云功能发送和验证OTP?

发布于 2025-01-20 07:12:31 字数 72 浏览 0 评论 0原文

我有发送和验证OTP代码的API。我需要使用Firebase Clod函数将该API链接到我的Flutter应用程序。请如何帮助?

I have API to send and verify otp code. I need to link that API to my flutter app using Firebase clod function. How is it possible Please help ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

别靠近我心 2025-01-27 07:12:31
  1. 设置 Firebase 云函数 这里

  2. 你的 js 代码就像这样

    exports.sendOtp = functions.https.onCall((请求,响应) => {
          const 选项 = JSON.stringify({
            手机:请求.文本,
          });
          常量标头 = {
            "授权": "承载者 xxxxxxxxxxxxxxxxxxxxxxx",
          };
          const res = axios.post(“url”, options, {headers: headers}).then((response) => {
            控制台.log(响应);
            返回响应;
          });
          返回res.statusCode;
        });
    
    
  3. 你的服务代码就像

    Future<void> sendOtp(String mobile) async {
        HttpsCallable callable =
            FirebaseFunctions.instance.httpsCallable('sendOtp');
        final resp = await callable.call(<String, dynamic>{
          'text': mobile,
        });
     }
  1. Setup firebase cloud function here

  2. Your js code be like

    exports.sendOtp = functions.https.onCall((request, response) => {
          const options = JSON.stringify({
            mobile: request.text,
          });
          const headers = {
            "Authorization": "Bearer xxxxxxxxxxxxxxxxxxxxxxx”,
          };
          const res = axios.post(“url”, options, {headers: headers}).then((response) => {
            console.log(response);
            return response;
          });
          return res.statusCode;
        });
    
    
  3. Your service code be like

    Future<void> sendOtp(String mobile) async {
        HttpsCallable callable =
            FirebaseFunctions.instance.httpsCallable('sendOtp');
        final resp = await callable.call(<String, dynamic>{
          'text': mobile,
        });
     }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文