การตั้งค่าส่วนหัวการอนุญาตของ HttpClient


483

ฉันมี HttpClient ที่ฉันใช้สำหรับ REST API อย่างไรก็ตามฉันมีปัญหาในการตั้งค่าส่วนหัวการอนุญาต ฉันต้องตั้งส่วนหัวเป็นโทเค็นที่ฉันได้รับจากการทำตามคำขอ OAuth ของฉัน ฉันเห็นรหัสสำหรับ. NET ที่แนะนำสิ่งต่อไปนี้

httpClient.DefaultRequestHeaders.Authorization = new Credential(OAuth.token);

อย่างไรก็ตามคลาส Credential ไม่มีอยู่ใน WinRT ใครมีแนวคิดใดบ้างที่จะตั้งค่าหัวข้อการให้สิทธิ์


1
คลาสเนมสเปซแบบใดที่เป็นของ
kampsj

@kampsj ฉันไม่รู้เพราะเป็นเนมสเปซ. NET ที่ไม่มีอยู่ใน WinRT
Stephen Hynes

1
ทำไมไม่ร้องขอผู้นำเพิ่ม ("การอนุญาต" โทเค็น);
ahll

คำตอบ:


816

ดังนั้นวิธีที่จะทำคือต่อไปนี้

httpClient.DefaultRequestHeaders.Authorization =
    new AuthenticationHeaderValue("Bearer", "Your Oauth token");

15
คุณจะได้รับ "Your Oauth token" ได้อย่างไร?
Secret Squirrel

3
สิ่งที่ฉันใช้คือ: client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", "encrypted user/pwd");การเข้ารหัสผู้ใช้ / รหัสผ่านจากส่วนขยายของ Chrome Rest Client ขั้นสูง
Red

6
@Red fyi พารามิเตอร์ที่สองคือผู้ใช้ที่เข้ารหัส base64: รหัสผ่าน (ไม่ได้เข้ารหัส)
n00b

5
แอปพลิเคชันของฉันใช้สิ่งนี้อย่างมีความสุขมานานแล้วจากสีน้ำเงินฉันเริ่มได้รับ RuntimeBinderException ฉันต้องเปลี่ยนเป็นhttpClient.DefaultRequestHeaders.Add ("การอนุญาต", "ผู้ถือ", "โทเค็น Oauth ของคุณ"); เพื่อให้มันไปอีกครั้ง
kraeg

8
@ kraeg รหัสที่คุณระบุไว้ไม่ได้รวบรวมคุณหมายถึงการเชื่อมโยง 2 สตริงสุดท้ายดังนี้: client.DefaultRequestHeaders.Add ("การอนุญาต", "ผู้ถือ" + "โทเค็น Oauth ของคุณ");
TroySteven

354
request.DefaultRequestHeaders.Authorization = 
    new AuthenticationHeaderValue(
        "Basic", Convert.ToBase64String(
            System.Text.ASCIIEncoding.ASCII.GetBytes(
               $"{yourusername}:{yourpwd}")));

27
@MickyDuncan HttpClient มี DefaultRequestHeaders.Authorization และคำตอบนี้ก็ช่วยกู้วันของฉัน ขอบคุณมากที่ WhiteRabbit
Joey Schluchter

3
สิ่งนี้ไม่ทำงานหากคุณตรวจสอบส่วนหัวของ Auhtorization นั้นไม่มีอะไรมากกว่าสตริงพื้นฐาน
Raffaeu

1
ทุกคนสามารถอธิบายได้หรือไม่ว่าทำไมการแปลงชื่อผู้ใช้และรหัสผ่านให้เป็นสตริงเบส 64 มันไม่มีการเข้ารหัสที่แท้จริงดังนั้นทำไมมันถึงสำคัญ
โจนาธานวู้ด

3
@JonathanWood เพราะนั่นเป็นวิธีการใช้งาน ข้อเสนอพื้นฐานไม่มีการเข้ารหัสเพียงพอสำหรับการเข้ารหัสเพื่อหลีกเลี่ยงปัญหาเกี่ยวกับการเลือกอักขระรหัสผ่านในส่วนหัว
Richard

4
มีเหตุผลใดที่คุณใช้การเข้ารหัส ASCII ที่นี่หรือไม่ ฉันคิดว่าไม่มีปัญหากับการใช้การเข้ารหัส UTF8 เนื่องจากเราทำการเข้ารหัส Base64 แล้ว ฉันเดาว่าฉันสงสัยว่าข้อกำหนดการรับรองความถูกต้องเบื้องต้นระบุว่าชื่อผู้ใช้: คำสั่งผสมรหัสผ่านควรเป็น ASCII เท่านั้นหรือไม่
บดขยี้

82

ฉันมองหาวิธีที่ดีในการจัดการกับปัญหานี้และฉันกำลังดูคำถามเดียวกัน หวังว่าคำตอบนี้จะช่วยทุกคนที่มีปัญหาแบบเดียวกันกับฉัน

using (var client = new HttpClient())
{
    var url = "https://www.theidentityhub.com/{tenant}/api/identity/v1";
    client.DefaultRequestHeaders.Add("Authorization", "Bearer " + accessToken);
    var response = await client.GetStringAsync(url);
    // Parse JSON response.
    ....
}

การอ้างอิงจากhttps://www.theidentityhub.com/hub/Documentation/CallTheIdentityHubApi


1
ฉันกำลังทำสิ่งเดียวกันกับ @willie และฉันยังได้รับ 401 จาก API ของฉัน
SomethingOn

2
สวัสดี @SomethingOn ฉันคิดว่าคุณไม่ได้รับรหัสโทเค็นที่ถูกต้องเพื่อให้คุณมี 401 ฉันจะแบ่งปันวิธีของฉันใน "ถามคำถาม" ส่วนบุคคลของฉันหวังว่ามันจะช่วยให้คุณสามารถจัดการกับปัญหาของคุณ PS รอสักครู่
Willie Cheng

14
คุณไม่ควรใส่ HttpClient ไว้ในusingบล็อก (ใช่ฉันรู้ว่ามันฟังดูย้อนหลัง แต่คุณจะรั่วไหลของการเชื่อมต่อถ้าคุณใช้usingแทนการรีไซเคิล HttpClient)
Jonathan Allen

42

เนื่องจากเป็นวิธีปฏิบัติที่ดีในการนำ HttpClient อินสแตนซ์กลับมาใช้ใหม่เพื่อประสิทธิภาพการทำงานและปัญหาการอ่อนเพลียจากพอร์ตและเนื่องจากไม่มีคำตอบใดที่จะแก้ปัญหานี้ (และแม้แต่นำคุณไปสู่การปฏิบัติที่ไม่ดี :() ในคำถามที่คล้ายกัน:

https://stackoverflow.com/a/40707446/717372

แหล่งข้อมูลบางอย่างเกี่ยวกับวิธีใช้ HttpClient อย่างถูกวิธี:


5
ปัญหาการอ่อนเพลียของพอร์ตไม่ใช่เรื่องตลก แทบจะไม่เคยเกิดขึ้นในระบบประกันคุณภาพ แต่จะทำโครงการที่ใช้งานหนักในการผลิต
Jonathan Allen

เห็นโพสต์ของฉันสำหรับตัวอย่างที่เป็นรูปธรรมstackoverflow.com/a/59052193/790635
EMP

41

ฉันเห็นด้วยกับคำตอบของ TheWhiteRabbit แต่ถ้าคุณมีการโทรจำนวนมากโดยใช้ HttpClient โค้ดดูเหมือนจะซ้ำไปซ้ำมาในความคิดของฉัน

ฉันคิดว่ามี 2 วิธีในการปรับปรุงคำตอบเล็กน้อย

สร้างคลาสตัวช่วยเพื่อสร้างไคลเอนต์:

public static class ClientHelper
{
    // Basic auth
    public static HttpClient GetClient(string username,string password)
    {
            var authValue = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.UTF8.GetBytes($"{username}:{password}")));

            var client = new HttpClient(){
                DefaultRequestHeaders = { Authorization = authValue}
                //Set some other client defaults like timeout / BaseAddress
            };
            return client;
    }

    // Auth with bearer token
    public static HttpClient GetClient(string token)
    {
            var authValue = new AuthenticationHeaderValue("Bearer", token);

            var client = new HttpClient(){
                DefaultRequestHeaders = { Authorization = authValue}
                //Set some other client defaults like timeout / BaseAddress
            };
            return client;
    }
}

การใช้งาน:

using(var client = ClientHelper.GetClient(username,password))
{
    //Perform some http call
}

using(var client = ClientHelper.GetClient(token))
{
    //Perform some http call
}

สร้างวิธีการขยาย:

ไม่ชนะรางวัลความงาม แต่ใช้งานได้ดี :)

    public static class HttpClientExtentions
    {
        public static AuthenticationHeaderValue ToAuthHeaderValue(this string username, string password)
        {
            return new AuthenticationHeaderValue("Basic",
        Convert.ToBase64String(
            System.Text.Encoding.ASCII.GetBytes(
                $"{username}:{password}")));
        }
    }

การใช้งาน:

using (var client = new HttpClient())
{
    client.DefaultRequestHeaders.Authorization = _username.ToAuthHeaderValue(_password); 
}

อีกครั้งฉันคิดว่า 2 ตัวเลือกด้านบนทำให้ลูกค้าที่ใช้คำสั่งซ้ำเล็กน้อยน้อย โปรดทราบว่าเป็นวิธีปฏิบัติที่ดีที่สุดในการใช้ HttpClient อีกครั้งหากคุณใช้การโทร http หลายรายการ แต่ฉันคิดว่าคำถามนี้ไม่ดีพอ


20
ฉันเห็นคำตอบของคุณ upvoted แต่ฉันจะไม่แนะนำวิธีนี้ TL; DR ผิดธรรมดาเพราะซ็อกเก็ตอ่อนเพลียนี่คือลิงก์
lacripta

2
@lacripta นี่เป็นเรื่องจริง แต่ถ้าคุณอ่าน 2 ประโยคสุดท้ายฉันพูดว่าวิธีที่ดีที่สุดที่จะนำ HttpClient กลับมาใช้ใหม่ด้วยเหตุผลนี้ แต่ฉันคิดว่ามันเกินขอบเขตสำหรับคำถามนี้
Florian Schaal

1
ฉันสามารถเห็นประเด็นของคุณ แต่คุณกำลังเสนอแนะว่ารหัสนั้นซ้ำไปซ้ำมาซึ่งอาจนำไปสู่การใช้วิธีการที่ผิดวิธีจากโรงงานนี้จะเป็นการดีที่จะชี้ให้เห็นในบรรทัดแรกที่จะทำให้เกิดปัญหาการใช้ทรัพยากรในอนาคต กรณีนี้. และไม่ใช่แค่คำเตือนที่คนส่วนใหญ่จะไม่อ่าน
lacripta

1
การใช้ HttpClientFactory น่าจะดีกว่ามากเพื่อหลีกเลี่ยงปัญหาซ็อกเก็ตอ่อนเพลีย
RyanOC

21

ฉันกำลังตั้งโทเค็นผู้ถือ

httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);

มันใช้งานได้ในจุดปลายหนึ่ง แต่ไม่ใช่จุดอื่น ปัญหาก็คือว่าผมมีกรณีที่ต่ำกว่าในb "bearer"หลังจากการเปลี่ยนแปลงตอนนี้มันใช้ได้กับ API ของทั้งคู่ฉันกำลังกดปุ่ม ช่างเป็นเรื่องง่ายที่จะพลาดถ้าคุณไม่คิดว่ามันเป็นหนึ่งในกองฟางที่จะมองหาเข็ม

ตรวจสอบให้แน่ใจว่าได้"Bearer"- ด้วยทุน


18

ฉันแนะนำให้คุณ:

HttpClient.DefaultRequestHeaders.Add("Authorization", "Bearer <token>");

จากนั้นคุณสามารถใช้มันได้

var response = await client.GetAsync(url);
if (response.IsSuccessStatusCode)
{
    responseMessage = await response.Content.ReadAsAsync<ResponseMessage>();
}

หากโทเค็นของคุณหมดเวลาทุก 1 ชั่วโมงเช่นคุณต้องอัปเดต HttpClient ด้วยวิธีแก้ปัญหานี้ ฉันขอแนะนำให้ตรวจสอบว่าโทเค็นของคุณยังคงใช้ได้อยู่และจะรีเฟรชและเพิ่มลงใน HttpRequestMessage
Johan Franzén

13

ในการตั้งค่าการตรวจสอบเบื้องต้นด้วย C # HttpClient รหัสต่อไปนี้ใช้งานได้สำหรับฉัน

   using (var client = new HttpClient())
        {
            var webUrl ="http://localhost/saleapi/api/";
            var uri = "api/sales";
            client.BaseAddress = new Uri(webUrl);
            client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
            client.DefaultRequestHeaders.ConnectionClose = true;

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

            var result = await client.PostAsJsonAsync(uri, model);
            return result;
        }

สิ่งที่ฉันต้องการจริงๆขอบคุณ
rchrd

9

นี่คือวิธีที่ฉันได้ทำ:

using (HttpClient httpClient = new HttpClient())
{
   Dictionary<string, string> tokenDetails = null;
   var messageDetails = new Message { Id = 4, Message1 = des };
   HttpClient client = new HttpClient();
   client.BaseAddress = new Uri("http://localhost:3774/");
   var login = new Dictionary<string, string>
       {
           {"grant_type", "password"},
           {"username", "sa@role.com"},
           {"password", "lopzwsx@23"},
       };
   var response = client.PostAsync("Token", new FormUrlEncodedContent(login)).Result;
   if (response.IsSuccessStatusCode)
   {
      tokenDetails = JsonConvert.DeserializeObject<Dictionary<string, string>>(response.Content.ReadAsStringAsync().Result);
      if (tokenDetails != null && tokenDetails.Any())
      {
         var tokenNo = tokenDetails.FirstOrDefault().Value;
         client.DefaultRequestHeaders.Add("Authorization", "Bearer " + tokenNo);
         client.PostAsJsonAsync("api/menu", messageDetails)
             .ContinueWith((postTask) => postTask.Result.EnsureSuccessStatusCode());
      }
   }
}

วิดีโอ you-tube นี้ช่วยฉันได้มาก กรุณาตรวจสอบมัน https://www.youtube.com/watch?v=qCwnU06NV5Q


9

ใช้การอนุญาตพื้นฐานและพารามิเตอร์ Json

using (HttpClient client = new HttpClient())
                    {
                        var request_json = "your json string";

                        var content = new StringContent(request_json, Encoding.UTF8, "application/json");

                        var authenticationBytes = Encoding.ASCII.GetBytes("YourUsername:YourPassword");

                        client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic",
                               Convert.ToBase64String(authenticationBytes));
                        client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

                        var result = await client.PostAsync("YourURL", content);

                        var result_string = await result.Content.ReadAsStringAsync();
                    }

2
คุณไม่ควรใส่รหัสเพื่อปิดการตรวจสอบใบรับรอง SSL ในตัวอย่างเช่นนี้ ผู้คนอาจคัดลอกรหัสของคุณโดยไม่รู้ตัวว่าทำอะไรอยู่ ฉันได้ลบบรรทัดเหล่านั้นให้คุณแล้ว
จอห์น

9

หากคุณต้องการนำมาใช้ซ้ำHttpClientขอแนะนำว่าอย่าใช้สิ่งDefaultRequestHeadersที่ถูกใช้เพื่อส่งพร้อมกับคำขอแต่ละรายการ

คุณสามารถลองสิ่งนี้:

var requestMessage = new HttpRequestMessage
    {
        Method = HttpMethod.Post,
        Content = new StringContent("...", Encoding.UTF8, "application/json"),
        RequestUri = new Uri("...")
    };

requestMessage.Headers.Authorization = new AuthenticationHeaderValue("Basic", 
    Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes($"{user}:{password}")));

var response = await _httpClient.SendAsync(requestMessage);

8

6 ปีต่อมา แต่เพิ่มสิ่งนี้ในกรณีที่ช่วยใครบางคน

https://www.codeproject.com/Tips/996401/Authenticate-WebAPIs-with-Basic-and-Windows-Authen

var authenticationBytes = Encoding.ASCII.GetBytes("<username>:<password>");
using (HttpClient confClient = new HttpClient())
{
  confClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", 
         Convert.ToBase64String(authenticationBytes));
  confClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue(Constants.MediaType));  
  HttpResponseMessage message = confClient.GetAsync("<service URI>").Result;
  if (message.IsSuccessStatusCode)
  {
    var inter = message.Content.ReadAsStringAsync();
    List<string> result = JsonConvert.DeserializeObject<List<string>>(inter.Result);
  }
}

ทำงานให้ฉัน ตรงข้ามกับคำตอบของ Willie Cheng ที่ไม่ได้ผลสำหรับฉัน
user890332

5

ตัวเลือก UTF8

request.DefaultRequestHeaders.Authorization = 
new AuthenticationHeaderValue(
    "Basic", Convert.ToBase64String(
        System.Text.Encoding.UTF8.GetBytes(
           $"{yourusername}:{yourpwd}")));

3

ใช้AuthenticationHeaderValueคลาสของSystem.Net.Httpชุดประกอบ

public AuthenticationHeaderValue(
    string scheme,
    string parameter
)

เราสามารถตั้งค่าหรืออัปเดตAuthorizationส่วนหัวที่มีอยู่สำหรับสิ่งที่httpclientชอบของเรา:

httpclient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", TokenResponse.AccessToken);

1
ยินดีต้อนรับใน SO แต่โปรดเพิ่มบริบทเพิ่มเติม
JP Hellemons

คำตอบคือจุดที่ แต่จะไม่เจ็บที่จะมีหนึ่งซับอธิบายสิ่งที่รหัสของเขาควรจะทำ แค่พูด.
iiminov

2

BaseWebApi.cs

public abstract class BaseWebApi
{
    //Inject HttpClient from Ninject
    private readonly HttpClient _httpClient;
    public BaseWebApi(HttpClient httpclient)
    {
        _httpClient = httpClient;
    }

    public async Task<TOut> PostAsync<TOut>(string method, object param, Dictionary<string, string> headers, HttpMethod httpMethod)
    {
        //Set url

        HttpResponseMessage response;
        using (var request = new HttpRequestMessage(httpMethod, url))
        {
            AddBody(param, request);
            AddHeaders(request, headers);
            response = await _httpClient.SendAsync(request, cancellationToken);
        }

        if(response.IsSuccessStatusCode)
        {
             return await response.Content.ReadAsAsync<TOut>();
        }
        //Exception handling
    }

    private void AddHeaders(HttpRequestMessage request, Dictionary<string, string> headers)
    {
        request.Headers.Accept.Clear();
        request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

        if (headers == null) return;

        foreach (var header in headers)
        {
            request.Headers.Add(header.Key, header.Value);
        }
    }

    private static void AddBody(object param, HttpRequestMessage request)
    {
        if (param != null)
        {
            var content = JsonConvert.SerializeObject(param);
            request.Content = new StringContent(content);
            request.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
        }
    }

SubWebApi.cs

public sealed class SubWebApi : BaseWebApi
{
    public SubWebApi(HttpClient httpClient) : base(httpClient) {}

    public async Task<StuffResponse> GetStuffAsync(int cvr)
    {
        var method = "get/stuff";
        var request = new StuffRequest 
        {
            query = "GiveMeStuff"
        }
        return await PostAsync<StuffResponse>(method, request, GetHeaders(), HttpMethod.Post);
    }
    private Dictionary<string, string> GetHeaders()
    {
        var headers = new Dictionary<string, string>();
        var basicAuth = GetBasicAuth();
        headers.Add("Authorization", basicAuth);
        return headers;
    }

    private string GetBasicAuth()
    {
        var byteArray = Encoding.ASCII.GetBytes($"{SystemSettings.Username}:{SystemSettings.Password}");
        var authString = Convert.ToBase64String(byteArray);
        return $"Basic {authString}";
    }
}

1

ในกรณีที่คุณต้องการส่งHttpClientคำขอกับ Bearer Token รหัสนี้อาจเป็นวิธีที่ดี:

var requestMessage = new HttpRequestMessage
{
    Method = HttpMethod.Post,
    Content = new StringContent(".....", Encoding.UTF8, "application/json"),
    RequestUri = new Uri(".....")
};

requestMessage.Headers.Authorization = new AuthenticationHeaderValue("Bearer", "Your token");

var response = await _httpClient.SendAsync(requestMessage);

0

ใน. core สุทธิคุณสามารถใช้

var client = new HttpClient();
client.SetBasicAuthentication(userName, password);

หรือ

var client = new HttpClient();
client.SetBearerToken(token);

1
ตัวอย่างแรกไม่ทำงานเนื่องจากSetBasicAuthentication()ไม่สามารถใช้งานได้ตามค่าเริ่มต้นดังนั้นจึงต้องเป็นวิธีการขยาย มันกำหนดไว้ที่ไหน
ViRuSTriNiTy

0

อาจใช้ไลบรารีที่มีอยู่ได้ง่ายขึ้น

ตัวอย่างเช่นวิธีการขยายด้านล่างจะถูกเพิ่มด้วย Identity Server 4 https://www.nuget.org/packages/IdentityModel/

 public static void SetBasicAuthentication(this HttpClient client, string userName, string password);
    //
    // Summary:
    //     Sets a basic authentication header.
    //
    // Parameters:
    //   request:
    //     The HTTP request message.
    //
    //   userName:
    //     Name of the user.
    //
    //   password:
    //     The password.
    public static void SetBasicAuthentication(this HttpRequestMessage request, string userName, string password);
    //
    // Summary:
    //     Sets a basic authentication header for RFC6749 client authentication.
    //
    // Parameters:
    //   client:
    //     The client.
    //
    //   userName:
    //     Name of the user.
    //
    //   password:
    //     The password.
    public static void SetBasicAuthenticationOAuth(this HttpClient client, string userName, string password);
    //
    // Summary:
    //     Sets a basic authentication header for RFC6749 client authentication.
    //
    // Parameters:
    //   request:
    //     The HTTP request message.
    //
    //   userName:
    //     Name of the user.
    //
    //   password:
    //     The password.
    public static void SetBasicAuthenticationOAuth(this HttpRequestMessage request, string userName, string password);
    //
    // Summary:
    //     Sets an authorization header with a bearer token.
    //
    // Parameters:
    //   client:
    //     The client.
    //
    //   token:
    //     The token.
    public static void SetBearerToken(this HttpClient client, string token);
    //
    // Summary:
    //     Sets an authorization header with a bearer token.
    //
    // Parameters:
    //   request:
    //     The HTTP request message.
    //
    //   token:
    //     The token.
    public static void SetBearerToken(this HttpRequestMessage request, string token);
    //
    // Summary:
    //     Sets an authorization header with a given scheme and value.
    //
    // Parameters:
    //   client:
    //     The client.
    //
    //   scheme:
    //     The scheme.
    //
    //   token:
    //     The token.
    public static void SetToken(this HttpClient client, string scheme, string token);
    //
    // Summary:
    //     Sets an authorization header with a given scheme and value.
    //
    // Parameters:
    //   request:
    //     The HTTP request message.
    //
    //   scheme:
    //     The scheme.
    //
    //   token:
    //     The token.
    public static void SetToken(this HttpRequestMessage request, string scheme, string token);

0

การไหลของกระบวนการ Oauth นั้นซับซ้อนและมักจะมีห้องสำหรับข้อผิดพลาดอย่างใดอย่างหนึ่ง คำแนะนำของฉันคือการใช้รหัสสำเร็จรูปและชุดของไลบรารีสำหรับการตรวจสอบสิทธิ์ OAuth ทุกครั้งมันจะทำให้ชีวิตของคุณง่ายขึ้น

นี่คือลิงค์สำหรับชุดของไลบรารี ไลบรารี OAuth สำหรับ. Net


-1

สิ่งนี้สามารถใช้งานได้หากคุณได้รับ json หรือ xml จากบริการและฉันคิดว่านี่จะช่วยให้คุณมีความคิดเกี่ยวกับการทำงานของส่วนหัวและประเภท T เช่นกันหากคุณใช้ฟังก์ชัน MakeXmlRequest (ใส่ผลลัพธ์ใน xmldocumnet) และ MakeJsonRequest (ใส่ json ในคลาสที่คุณต้องการที่มีโครงสร้างเดียวกันกับ json ที่ตอบสนอง) ในวิธีถัดไป

/*-------------------------example of use-------------*/
MakeXmlRequest<XmlDocument>("your_uri",result=>your_xmlDocument_variable =     result,error=>your_exception_Var = error);

MakeJsonRequest<classwhateveryouwant>("your_uri",result=>your_classwhateveryouwant_variable=result,error=>your_exception_Var=error)
/*-------------------------------------------------------------------------------*/


public class RestService
{
    public void MakeXmlRequest<T>(string uri, Action<XmlDocument> successAction, Action<Exception> errorAction)
    {
        XmlDocument XMLResponse = new XmlDocument();
        string wufooAPIKey = ""; /*or username as well*/
        string password = "";
        StringBuilder url = new StringBuilder();
        url.Append(uri);
        HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url.ToString());
        string authInfo = wufooAPIKey + ":" + password;
        authInfo = Convert.ToBase64String(Encoding.Default.GetBytes(authInfo));
        request.Timeout = 30000;
        request.KeepAlive = false;
        request.Headers["Authorization"] = "Basic " + authInfo;
        string documento = "";
        MakeRequest(request,response=> documento = response,
                            (error) =>
                            {
                             if (errorAction != null)
                             {
                                errorAction(error);
                             }
                            }
                   );
        XMLResponse.LoadXml(documento);
        successAction(XMLResponse);
    }



    public void MakeJsonRequest<T>(string uri, Action<T> successAction, Action<Exception> errorAction)
    {
        string wufooAPIKey = "";
        string password = "";
        StringBuilder url = new StringBuilder();
        url.Append(uri);
        HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url.ToString());
        string authInfo = wufooAPIKey + ":" + password;
        authInfo = Convert.ToBase64String(Encoding.Default.GetBytes(authInfo));
        request.Timeout = 30000;
        request.KeepAlive = false;
        request.Headers["Authorization"] = "Basic " + authInfo;
       // request.Accept = "application/json";
      //  request.Method = "GET";
        MakeRequest(
           request,
           (response) =>
           {
               if (successAction != null)
               {
                   T toReturn;
                   try
                   {
                       toReturn = Deserialize<T>(response);
                   }
                   catch (Exception ex)
                   {
                       errorAction(ex);
                       return;
                   }
                   successAction(toReturn);
               }
           },
           (error) =>
           {
               if (errorAction != null)
               {
                   errorAction(error);
               }
           }
        );
    }
    private void MakeRequest(HttpWebRequest request, Action<string> successAction, Action<Exception> errorAction)
    {
        try{
            using (var webResponse = (HttpWebResponse)request.GetResponse())
            {
                using (var reader = new StreamReader(webResponse.GetResponseStream()))
                {
                    var objText = reader.ReadToEnd();
                    successAction(objText);
                }
            }
        }catch(HttpException ex){
            errorAction(ex);
        }
    }
    private T Deserialize<T>(string responseBody)
    {
        try
        {
            var toReturns = JsonConvert.DeserializeObject<T>(responseBody);
             return toReturns;
        }
        catch (Exception ex)
        {
            string errores;
            errores = ex.Message;
        }
        var toReturn = JsonConvert.DeserializeObject<T>(responseBody);
        return toReturn;
    }
}
}

-1
static async Task<AccessToken> GetToken()
{
        string clientId = "XXX";
        string clientSecret = "YYY";
        string credentials = String.Format("{0}:{1}", clientId, clientSecret);

        using (var client = new HttpClient())
        {
            client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.UTF8.GetBytes(credentials)));
            List<KeyValuePair<string, string>> requestData = new List<KeyValuePair<string, string>>();
            requestData.Add(new KeyValuePair<string, string>("grant_type", "client_credentials"));
            FormUrlEncodedContent requestBody = new FormUrlEncodedContent(requestData);
            var request = await client.PostAsync("https://accounts.spotify.com/api/token", requestBody);
            var response = await request.Content.ReadAsStringAsync();
            return JsonConvert.DeserializeObject<AccessToken>(response);
        }
    }

ยินดีต้อนรับสู่ stackoverflow นอกเหนือจากคำตอบที่คุณให้มาโปรดพิจารณาให้คำอธิบายโดยย่อเกี่ยวกับสาเหตุและวิธีการนี้ในการแก้ไขปัญหา
jtate

-2

สิ่งนี้อาจช่วยในการตั้งค่าส่วนหัว:

WebClient client = new WebClient();

string authInfo = this.credentials.UserName + ":" + this.credentials.Password;
authInfo = Convert.ToBase64String(Encoding.Default.GetBytes(authInfo));
client.Headers["Authorization"] = "Basic " + authInfo;

9
เขาใช้ไม่ได้HttpClient WebClient
Jean Hominal
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.