我正在写作(试图写一个crud应用程序!) 在开始使用该服务之前,我需要将密钥发送到服务器。
this.InitializeComponent();
client = new HttpClient();
client.BaseAddress = new Uri("http://dignity-network.org/api/");
我试过了
client.BaseAddress = new Uri("NO3ID81WJECJXZI83A3YYPGJKJLNEJMQ@dignity-network.org/api/")
但这不起作用,向服务器发送授权的正确请求是什么?
感谢。
答案 0 :(得分:0)
全部取决于服务器如何接受和实现授权代码。 如果你必须在开始使用之前发送auth代码,你只需要:
HttpContent content = HttpContent.Create(yourAuthCode, Encoding.UTF8);
HttpResponseMessage response = client.Post(new Uri ("http://dignity-network.org/api/"), content);