使用 GUPSHUP 和 Nodejs 向电话号码发送短信

发布于 2025-01-11 16:46:40 字数 54 浏览 1 评论 0原文

我需要帮助使用 nodejs 和 Gupshup.io 向用户发送短信。我很难理解他们的文档。

I need help in sending sms to user using nodejs and Gupshup.io . I'm facing difficulty understanding their documentation.

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

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

发布评论

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

评论(1

电影里的梦 2025-01-18 16:46:41

Khurram Shahzad

我是 Gupshup 的聊天机器人开发人员,请让我知道您不明白的地方。

不管怎样,我将在这里分享使用我们的 API 在 Node.js 中发送短信的片段代码。

const { default: axios } = require('axios');
/*
Variables to replace
YOUR_API_KEY => The unique identifier for a Gupshup account.
YOUR_APP_ID=> The unique identifier for an app. An app's appid can be found in the cURL request generated on the dashboard.
*/
const sendMessage = (msg, phone, callbackFunc) => {
    const params = new URLSearchParams()
    params.append('destination', phone);
    params.append('message', msg);
    params.append('source', 'GSDSMS'); //Required only for india

    const config = {
        headers: {
            'apikey': YOUR_API_KEY,
            'Content-Type': 'application/x-www-form-urlencoded'
        }
    }

    axios.post('http://api.gupshup.io/sms/v1/message/:YOUR_APP_ID', params, config)
        .then((result) => {
            console.log('Message sent');
            callbackFunc(result.data);
        })
        .catch((err) => {
            console.log(err);
            callbackFunc(err);
        })
}

module.exports = {
    sendMessage
}

Khurram Shahzad

I work as a chatbot developer for Gupshup, please let me know what you don't understand.

Either way, here I'll share the snipet code to send an sms in node.js with our API.

const { default: axios } = require('axios');
/*
Variables to replace
YOUR_API_KEY => The unique identifier for a Gupshup account.
YOUR_APP_ID=> The unique identifier for an app. An app's appid can be found in the cURL request generated on the dashboard.
*/
const sendMessage = (msg, phone, callbackFunc) => {
    const params = new URLSearchParams()
    params.append('destination', phone);
    params.append('message', msg);
    params.append('source', 'GSDSMS'); //Required only for india

    const config = {
        headers: {
            'apikey': YOUR_API_KEY,
            'Content-Type': 'application/x-www-form-urlencoded'
        }
    }

    axios.post('http://api.gupshup.io/sms/v1/message/:YOUR_APP_ID', params, config)
        .then((result) => {
            console.log('Message sent');
            callbackFunc(result.data);
        })
        .catch((err) => {
            console.log(err);
            callbackFunc(err);
        })
}

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