我在接收来自chikka API的短信时遇到问题。我已经尝试了在他们的文档中发布的代码,代码是:
// 5. Display the received message:
Console.WriteLine("[Server] Message of client recieved");
string vowels = "aeiouAEIOU";
for (int i = 0; i < totalBytes; i++)
{
aChar = Convert.ToChar(incomingDataBuffer[i]);
Console.Write(aChar);
if ("aeiouAEIOU".Contains(aChar)) vowels += aChar;
Console.Write("[Server] Vowel characters deteced: " + vowels);
}
但它只返回错误。我正在研究如何处理API发送的消息,但它不起作用。我是这个API的新手。