csharp-rest-api icon indicating copy to clipboard operation
csharp-rest-api copied to clipboard

WhatsApp sandbox - Can Not Send WhatsApp Sandbox message after updating nuget to version 3

Open ahmetkocadogan opened this issue 5 years ago • 2 comments

https://github.com/messagebird/csharp-rest-api/pull/87 I updated MessageBird nuget package to version 3.0.0

accesskey, channelid and conversationid parameters are from WhatsApp Sandbox page.

When i want to send message, i get error NotFound description: 'Conversation not found' parameter: ''

What can be wrong here ?

                Client _client= Client.CreateDefault("accesskey");
                ConversationMessageSendRequest _request = new ConversationMessageSendRequest()
                {
                    ChannelId = "channelid",
                    Type = ContentType.Text,
                    ConversationId = "conversationid",
                    Content = new Content() { Text = "hello" }
                };
                ConversationMessage message = _client.SendConversationMessage(_request.ConversationId, _request);

ahmetkocadogan avatar Nov 17 '20 12:11 ahmetkocadogan

this issue still persists. Nuget V3 can not send messages in WhatsApp Sandbox. Any update ?

ahmetkocadogan avatar Feb 02 '21 15:02 ahmetkocadogan

Any update on this ?

ahmetkocadogan avatar Feb 19 '22 11:02 ahmetkocadogan