无法从Windows应用程序

时间:2018-04-17 18:06:13

标签: c# winforms asp.net-web-api2 postman

我在某个域上托管了C#Web API应用程序 使用postman所有web api的工作按预期进行,包括在使用它的应用程序中。

现在,我有一个场景,其中我需要从 C#Windows应用程序 托管的C#Web API 发出POST请求

我已经尝试过谷歌这个问题,但我能找到解决问题的部分方法。

当我用邮递员打电话给我的webapi时;这是我得到的实际/必需的JSON响应:

{
    "access_token": "7oIHQgUyb4NJc-kAc4Ce7Xa1ly5vKCaoxh0w-3PDixpvZtJkBLy7dg6kyE0gp_EZ_9pmh7LC06ztBKNyLbpLcruV9uHEVvIrvKvt0zowUv3Ho9sDGddvGy808N_tliljM8HYe4wJlcwlE9VzlWEv7bz3CNRNj_o9WLqPjcRTu2LN9wMAyMSXGdI_rE2guw-1w1W6aoDgr71x61InbRJ_DNqNpH0MhIUprhTeEVh59WEaq76FLErHTo3TXUTcjximVlxHQPZWh0gWN3dX7sI_Wz60RUK_h4SZO2VZ3QWZivPXX8CsOlXaullq0MnSLogb",
    "token_type": "bearer",
    "expires_in": 28799,
    "Username": "Gomesdenver",
    "UserId": "490253d0-79f6-4aed-96a9-5a041375d84c",
    "Role": "3b55f063-eb24-4e76-b30d-c2509c37fd8a",
    "DisplayAY": "2019-2020"
}


请参阅下面的图片(邮递员的要求及我的回应是我要求的): Interested in JSON response herein

我的C#Windows代码如下:

public async Task<string> LoginUser(string Username, string Password, Notifier notification)
{
    string strResult = string.Empty;
    dynamic res;
    HttpClient client = new HttpClient();
    try
    {
        notification("Attempting to contact database. Please wait..");
        await Task.Delay(750);

        var dict = new Dictionary<string, string>();
        dict.Add("username", "GomesDenver");
        dict.Add("password", "MyPassword");
        dict.Add("grant_type", "password");

        client.BaseAddress = new Uri("http://dummyuri.com/");
        client.DefaultRequestHeaders
            .Accept
            .Add(new MediaTypeWithQualityHeaderValue("application/x-www-form-urlencoded"));
        HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, "token")
        {
            Content = new FormUrlEncodedContent(dict)
        };

        res = client.SendAsync(request).Result;
    }
    catch (Exception ex)
    {
        strResult = ex.Message.ToString();
    }
    finally
    {
        // Do nothing
    }

    return strResult;
}

一切都按预期工作;但是我无法像Postman那样获取响应。 我使用此代码的结果是: Result received

我得到&#34;好的&#34;状态代码,但如何从此请求访问JSON响应? 如何在C#Windows应用程序代码中获取令牌值。

提前致谢。

1 个答案:

答案 0 :(得分:0)

利用HttpResponseMessage Class

        HttpResponseMessage httpResponseMessage = await client.SendAsync(request);
        string response = await httpResponseMessage.Content.ReadAsStringAsync();