public void Test_SendMsg_MulPic() { string res = ComHttpWork.SendMsg(CurrLoginUserLogin, new[] { "d:/p/1.jpg", "d:/p/2.jpg" }, "今天天气晴朗_多张图片内容"); Console.WriteLine(res); }//发布文字信息与多张图片内容
public void Test_SendMsg_SigPic() { string res = ComHttpWork.SendMsg(CurrLoginUserLogin, "d:/p/1.jpg", "今天天气晴朗_单张图片内容"); Console.WriteLine(res); }//发布文字信息与单张图片内容
public void Test_SendMsg() { string res = ComHttpWork.SendMsg(CurrLoginUserLogin, "今天天气晴朗_只发布文字信息内容"); Console.WriteLine(res); }//只发布文字信息内容