如何将数据发布到Firebase?

时间:2016-12-19 11:23:50

标签: c# asp.net asp.net-mvc firebase firebase-realtime-database

我需要没有第三方DLL的C#Firebase CRUD示例,因为所有这些都在.NET Framework 4.0中使用Visual Studio提供版本错误。

这就是我获取数据的方式:

using (var wb = new WebClient())
{
    var response = wb.DownloadString("https://dinosaur-facts.firebaseio.com/.json");
}

但是我如何发布数据?我已经使用过这个,但它给出了错误响应405。

var response=wb.UploadValues("https://dinosaur-facts.firebaseio.com","POST", data);

0 个答案:

没有答案