From @jonmyates on Fri Sep 09 2016 13:02:56 GMT+0000 (UTC)
Hello,
Would anyone please be able to advise how to add a file using C#?
I have the Get working:
var myRequest = WebRequest.CreateHttp("http://127.0.0.1:5001/api/v0/object/get?arg=QmNkxQz8JzmK6Y2VUdJ8K8gVx2jrhhzLc7ESsfjnKw8coK");
myRequest.Method = "GET";
myRequest.UserAgent = "WebRequestDemo";
using (var theResponse = myRequest.GetResponse())
{
var dataStream = theResponse.GetResponseStream();
StreamReader reader = new StreamReader(dataStream);
object objResponse = reader.ReadToEnd();
dataStream.Close();
theResponse.Close();
}
But can’t seem to workout the Add.
Thank you.
J
Copied from original issue: Add using C# · Issue #178 · ipfs-inactive/faq · GitHub