使用基本身份验证(Json)在发布网址中添加用户名和密码

时间:2018-09-06 10:05:28

标签: json url post body-parser jasonette

我想通过基本身份验证在帖子网址中添加用户名和密码

http://IPaddress:port/F1/Details { 身体 }

1 个答案:

答案 0 :(得分:0)

您未指定编程语言,但是如果您使用的是c#,它将是这样的:

HttpClient client = new HttpClient();

        var byteArray = Encoding.ASCII.GetBytes("username:password");
        client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Basic", Convert.ToBase64String(byteArray));
        client.PostAsync("http://IPaddress:port/F1/Details", yourcontent);

使用邮递员 enter image description here