Azure 函数中的 Smartsheet 访问

Smartsheet access in a azure function

好的,我有点小问题。我正在创建一些 azure 函数,需要在加载时从 smartsheet 添加一些数据,这是一个相当老的程序(netstandard 2.0)我将 smartsheet nuget 包安装到 2.126.0

这是我收到的消息:

Method not found: 'Void RestSharp.RestClient.set_FollowRedirects(Boolean)

这是我如何得到 sheet:

var accessToken = "accesscode"; SmartsheetClient smartsheet = new SmartsheetBuilder().SetAccessToken(accessToken).Build();

当我尝试 运行 在正常的 c# 解决方案环境中使用相同的代码时它工作正常,所以只是在 azure 函数环境中它一直失败。

通过将 restsharp 的版本更改为 106.6.9 解决了这个问题,我认为由于较新的版本必须对其他包有很多依赖性,所以当我将 restsharp 更改为早期版本时,它无法正常工作一次。