Podio .NET 客户端无法反序列化项目:JSON 整数对于 Int32 来说太大或太小
Podio .NET client failing to deserialize item: JSON integer is too large or small for an Int32
由于以下错误,我们的 Podio webhooks 集成开始中断:
使用 https://www.nuget.org/packages/Podio.Async 最新版本。
JSON integer 2149591369 is too large or small for an Int32. Path 'current_revision.item_revision_id', line 1, position 14100.
发生在 Newtonsoft.Json.JsonTextReader.ParseNumber(ReadType readType)
。
据我所知,item_revision_id
应该改为 long
才不会中断?
除了向他们的 repo 发出拉取请求外,我还能做些什么吗?
此修复的 PR 已经完成,修复正在进行中,保持冷静:)
您也可以自己修复并在本地构建。
由于以下错误,我们的 Podio webhooks 集成开始中断:
使用 https://www.nuget.org/packages/Podio.Async 最新版本。
JSON integer 2149591369 is too large or small for an Int32. Path 'current_revision.item_revision_id', line 1, position 14100.
发生在 Newtonsoft.Json.JsonTextReader.ParseNumber(ReadType readType)
。
据我所知,item_revision_id
应该改为 long
才不会中断?
除了向他们的 repo 发出拉取请求外,我还能做些什么吗?
此修复的 PR 已经完成,修复正在进行中,保持冷静:)
您也可以自己修复并在本地构建。