我目前正在尝试编写一个简单的F#应用程序,它将从一个号码发送到另一个号码。我已经为这个错误做了一段时间了,但似乎无法让它起作用。
我现在拥有的是:
open Plivo.API
open RestSharp
let plivoApi = new RestAPI("MA***", "OT******");
let dict = new System.Collections.Generic.Dictionary<string,string>()
dict.["src"] <- "1111111111"
dict.["dst"] <- "2222222222"
dict.["text"] <- "Hi, text from Plivo via the F sharp App."
let resp = plivoApi.send_message(dict)
printf "%s" (resp.ToString())以下是错误:

包版本:
RestSharp: V 105.2.3
Plivo: V 3.0.2
有什么建议吗?
发布于 2016-03-31 08:46:35
您应该考虑更改您的.NET环境--这可能是问题所在。你的代码对我来说很好
https://stackoverflow.com/questions/36328005
复制相似问题