টি এল; ডিআর: আমি এই ভাষায় নতুন এবং আমি কী করছি কিছুই জানেনা
এখানে এখন পর্যন্ত আমার ক্লাস:
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Web;
using System.Net;
using System.IO;
public class MyClass
{
private const string URL = "https://sub.domain.com/objects.json?api_key=123";
private const string data = @"{""object"":{""name"":""Title""}}";
public static void CreateObject()
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL);
request.Method = "POST";
request.ContentType = "application/json";
request.ContentLength = data.Length;
StreamWriter requestWriter = new StreamWriter(request.GetRequestStream(), System.Text.Encoding.ASCII);
requestWriter.Write(data);
requestWriter.Close();
try
{
// get the response
WebResponse webResponse = request.GetResponse();
Stream webStream = webResponse.GetResponseStream();
StreamReader responseReader = new StreamReader(webStream);
string response = responseReader.ReadToEnd();
responseReader.Close();
}
catch (WebException we)
{
string webExceptionMessage = we.Message;
}
catch (Exception ex)
{
// no need to do anything special here....
}
}
static void Main(string[] args)
{
MyClass.CreateObject();
}
}
আমি যখন সিএসসি ফাইলনাম.সি. করি, তখন আমি নিম্নলিখিত ত্রুটিটি পাই:
টাইপ বা নেমস্পেসের নাম 'এইচটিটিপি' নামস্থান 'সিস্টেম.নেট' তে বিদ্যমান নেই (আপনি কি কোনও সমাবেশের উল্লেখটি অনুপস্থিত?)
webClient
ক্ষেত্র) থেকে একটি অ স্থিতিশীল ক্ষেত্রে অ্যাক্সেস করার চেষ্টা করছেন । এছাড়াও, আপনি আসলে এটি কোনও কিছুর জন্য ব্যবহার করেন না। আপনি সম্ভবত এটি সরাতে পারে।