1

我目前正在尝试编写一个简单的 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

普利沃:v 3.0.2

有什么建议么?

4

1 回答 1

2

You should look at changing your .NET environment this could be the issue. Your code is working fine for me

于 2016-03-31T08:46:35.577 回答