messagebird / csharp-rest-api

This repository contains the open source C# client for MessageBird's REST API.
ISC License
54 stars 60 forks source link

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

Open ahmetkocadogan opened 3 years ago

ahmetkocadogan commented 3 years ago

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 commented 3 years ago

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

ahmetkocadogan commented 2 years ago

Any update on this ?