具有基本身份验证的C#http发布请求

时间:2019-07-16 06:38:14

标签: c#

我编写了一个python函数,通过带有基本身份验证的HTTP发布请求来移动路由器的IO端口。这很好。但是现在我想用C#实现sam。

这是我的python函数:

def io_on(ip='192.168.2.1', username='adm', password='123456'):
if not isinstance(ip, str):
    print('not string')
try:
    payload ='_ajax=1&_web_cmd=%21%0Aio%20output%201%20on%0A'
    r = requests.post('http://{}/apply.cgi'.format(ip), auth=HTTPBasicAuth(username, password), data=payload, timeout=3)
    if r.status_code == 200:
        print('{} : IO ON'.format(ip))
    elif r.status_code == 401:
        print('{} : Auth error'.format(ip))
    else:
        print(r.status_code)

except Exception as e:
    print(e)

我尝试使用NetWorkCredentials失败。

2 个答案:

答案 0 :(得分:1)

类似的东西:

    try
    {
        string username = "adm", password = "123456";
        string payload = "http://192.168.2.1/apply.cgi/?_ajax=1&_web_cmd=%21%0Aio%20output%201%20on%0A";


        HttpClient client = new HttpClient();

        var byteArray = Encoding.ASCII.GetBytes($"{username}:{password}");
        client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(byteArray));

        HttpResponseMessage response = await client.GetAsync(payload);
        HttpContent content = response.Content;

        if (response.IsSuccessStatusCode)
        {
            Console.WriteLine("Success");
        }

        else if (response.StatusCode == HttpStatusCode.Unauthorized)
        {
            Console.WriteLine("Auth error");
        }
        else
        {
            Console.WriteLine(response.StatusCode);
        }
    }
    catch (Exception e)
    {
        Console.WriteLine(e);
        throw;
    }

答案 1 :(得分:1)

这是使用基本身份验证进行POST的方式。

var authValue = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.UTF8.GetBytes($"{login}:{password}")));

using (var client = new HttpClient() { DefaultRequestHeaders = { Authorization = authValue } })
{
    HttpResponseMessage response = client.PostAsync("https://localhost:44396/Documentation/All?pageNumber=0&pageSize=10", httpContent).Result;
    if (response.IsSuccessStatusCode)
    {
        response = await response.Content.ReadAsStringAsync();
    }
}
相关问题