运行我在文档中看到的代码后
var creds = new Nexmo.Api.Request.Credentials
{
ApiKey = "xxxxxx",
ApiSecret = "xxxxxxxxx"
};
//this var Im getting the error
var results = SMS.Send(new SMS.SMSRequest
{
from = "CLient",
to = "639xxxxxxx",
text = "this is a test"
}, creds);
这是错误信息
System.IO.FileNotFoundException:'无法加载文件或程序集'Microsoft.Extensions.Configuration.Abstractions,版本= 1.1.2.0,Culture =中性,PublicKeyToken = adb9793829ddae60'或其依赖项之一。系统找不到指定的文件。'
答案 0 :(得分:1)
可能在这里有帮助的几件事。在文档中,检查“安装依赖项”部分,并检查Nexmo客户端是否已安装确定。
我还建议您查看整个脚本,并确保您具有导入文件等-该错误消息可能表示缺少依赖项。这是docs页面使用的可运行代码的链接: