使用 Nexmo.Csharp.Client 发送短信

正如我在文档中看到的那样运行我的代码后


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,Version=1.1.2.0,Culture=neutral,PublicKeyToken=adb9793829ddae60”或其依赖项之一。该系统找不到指定的文件。'


有只小跳蛙
浏览 121回答 1
1回答

叮当猫咪

有几件事可能会有所帮助。在文档中,检查“安装依赖项”部分并检查 Nexmo 客户端是否已安装正常。我还建议查看完整的脚本并确保您有导入等 - 该错误消息可能表明缺少依赖项。以下是文档页面使用的可运行代码的链接:代码: https: //github.com/nexmo/nexmo-dotnet-code-snippets/blob/master/NexmoDotnetCodeSnippets/Authentication/BasicAuth.cs#L17-L21文档:https://developer.nexmo.com/messaging/sms/code-snippets/send-an-sms/dotnet
打开App,查看更多内容
随时随地看视频慕课网APP