收藏
回答

云开发短信发送不报错,却收不到短信是什么原因?

我购买了短信包,编写了云函数如下:

exports.main = async (event, context) => {

  try {

    const result = await cloud.openapi.cloudbase.sendSms({

        "env": 'cloud1-6gvg3jh35e51fb99',

        "content": '发布了新的能力!!ljh1',

        "path": '/index.html',

        "phoneNumberList": [

          "+861866077XXXX"

        ],

        "sms_type": 'Notification',

        "template_id": '10000022',        

        "template_param_list":        

        ['232324','登录','5'        

        ]

      })

    return result

  } catch (err{

    return err

  }

} 

部署后,发送短信不报错,内容如下:

我一直收不到短信,到底是什么原因呢?

回答关注问题邀请回答
收藏

1 个回答

  • 正青春
    正青春
    01-03

    const result = await cloud.openapi.cloudbase.sendSms({

    "env": envid, // 环境ID

    "phone_number_list":

    ["+861777777xxxx"

    ],

    "sms_type": 'Notification',

    "template_id": '10000022',

    "template_param_list":

    ['232324','登录','5'

    ]

    });


    01-03
    有用 1
    回复 2
    • ljh
      ljh
      01-04
      什么都没改,过了一会就好了。谢谢了。
      01-04
      回复
    • ?
      04-28
      确实解决了问题
      04-28
      1
      回复
登录 后发表内容