gpt4 book ai didi

asp.net-core - 使用 asp.net core 通过 twilio 向 whatsapp 组发送消息

转载 作者:行者123 更新时间:2023-12-03 16:03:50 24 4
gpt4 key购买 nike

我正在尝试将 whatsapp business api 用于我的 twilio 应用程序。我已经阅读了 whatsapp business api 的文档。我的问题是,我们可以使用 twilio 根据 id 将消息发送到不同的 whatsapp 组。
例如,如果我有 3 个组,例如学生、教授、助理,并且基于每个不同的组,我想向学生发送特定的消息,例如向学生问好、向教授问好和对助理说你好。
到目前为止我所知道的是 Whatsapp 用特定的 id 区分所有内容,例如,chat.whatsapp.com/DeUzzel9O13231
我还使用过 twilio 和 whatsapp api,您可以在其中将消息从您的 twilio 号码发送到您的 whatsapp 号码,如下所示

using System;
using Twilio;
using Twilio.Rest.Api.V2010.Account;


class Program
{
static void Main(string[] args)
{
// Find your Account Sid and Token at twilio.com/console
// DANGER! This is insecure. See http://twil.io/secure
const string accountSid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
const string authToken = "your_auth_token";

TwilioClient.Init(accountSid, authToken);

var message = MessageResource.Create(
body: "Join Earth's mightiest heroes. Like Kevin Bacon.",
from: new Twilio.Types.PhoneNumber("+15017122661"),
to: new Twilio.Types.PhoneNumber("+15558675310")
);

Console.WriteLine(message.Sid);
}
}

上面的代码仅用于向特定号码发送消息。我可以对小组做同样的事情吗?如果是,如何?有没有相关文件?

谢谢。

最佳答案

看起来还不是受支持的功能。

"Can I send messages to WhatsApp groups or manage groups?

Currently, our API does not support messaging with or managing WhatsApp groups. We expect to add support for groups in the future."



来源 : https://www.twilio.com/docs/sms/whatsapp/best-practices-and-faqs#frequently-asked-questions-on-whatsapp-integrations

关于asp.net-core - 使用 asp.net core 通过 twilio 向 whatsapp 组发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56114325/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com