我在我的asp.net项目中使用Telegram Bot Api Library for .net
(https://www.nuget.org/packages/Telegram.Bot/)
设置webhook后,我想从webhook reciver页面获取更新。我无法将发布的json数据转换为Update
对象。
请帮助解决它。
这是我的代码:
Dim jsonData As String = New StreamReader(Request.InputStream).ReadToEnd
Dim up = Update.FromString(Newtonsoft.Json.JsonConvert.DeserializeObject(jsonData))
答案 0 :(得分:1)
按编辑代码,解决问题:
Dim jsonData As String = New StreamReader(Request.InputStream).ReadToEnd
Dim up = Update.FromString(jsonData)