-1
skypeからdirectにメッセージを送信するときにエラーBad format of conversation ID
(skype)が表示されるのはなぜですか?skypeから直接にメッセージを送信するときに「会話IDの形式が不正です」(skype)
IMessageActivity msg = context.MakeMessage();
msg.ChannelId = user.ChannelId;
msg.ServiceUrl = user.serviceUrl;
msg.Recipient = new ChannelAccount(id: user.userID);
msg.Conversation = new ConversationAccount(id: user.conversationId);
msg.Text = textMsg.Text; await context.PostAsync(msg);
を使用する必要がありますが、APIドキュメントをチェックしようとしたことがありますか? – SaggingRufus
実行時に 'user.conversationId'の値は何ですか?たぶんそれは必要な形式ではありません... –
どちらの方法でも、この質問には回答するのに十分な情報がなく、保留する必要があります – SaggingRufus