admin管理员组文章数量:1345174
I'm trying to send a template message in C# using the WhatsApp Cloud API, I succeeded to send message when I used a template without any parameter:
{
"messaging_product": "whatsapp",
"to": "{{Recipient-Phone-Number}}",
"type": "template",
"template": {
"name": "hello_world",
"language": {
"code": "en_US"
}
}
}
To C# (Working)
var request = new HttpRequestMessage
{
Method = HttpMethod.Post,
RequestUri = new Uri(".0/596008323xxxxxx/messages"),
Headers =
{
{ "Authorization" , access_token}
},
Content = JsonContent.Create(new
{
messaging_product = "whatsapp",
to = "21xxxxxx",
type = "template",
template = new
{
name = "hello_world",
language = new {code = "en_US"}
}
})
};
But in another Whatsapp
template I used two parameters, So I failed to apply the parameters in C# code
This is working API
{
"messaging_product": "whatsapp",
"to": "{{Recipient-Phone-Number}}",
"type": "template",
"template": {
"name": "new_template",
"language": {
"code": "en_US"
},
"components": [
{
"type": "body",
"parameters": [
{"type": "text", "text":"person_name"},
{"type": "text", "text":"15"}
]
}]
}
}
Not Wotrking
C#
var request = new HttpRequestMessage
{
Method = HttpMethod.Post,
RequestUri = new Uri(".0/596008323xxxxxx/messages"),
Headers =
{
{ "Authorization" , access_token}
},
Content = JsonContent.Create(new
{
messaging_product = "whatsapp",
to = "21xxxxxx",
type = "template",
template = new
{
name = "new_template",
language = new {code = "en_US"},
components = new
{
type = "body",
parameters = new
{
text = "person_name",
text2= "15"
}
}
}
})
};
I have an error in appling parameters in C#, Any help with this?
本文标签: facebookSend Whatsapp Cloud API template with Parameters using CStack Overflow
版权声明:本文标题:facebook - Send Whatsapp Cloud API template with Parameters using C# - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743772256a2536333.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论