Skip to content

Instantly share code, notes, and snippets.

@jesslilly
Created May 22, 2018 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesslilly/ab303b4168880c3236aa9fe707494dd9 to your computer and use it in GitHub Desktop.
Save jesslilly/ab303b4168880c3236aa9fe707494dd9 to your computer and use it in GitHub Desktop.
HttpClient.cs Authentication Error?
using System;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleTestApp1
{
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
SeedDataInline2().GetAwaiter().GetResult();
Console.ReadLine();
}
public static async Task SeedDataInline2()
{
// Arrange
var client = new HttpClient();
//client.DefaultRequestHeaders.Clear();
//client.BaseAddress = new Uri(settings.Url);
var login = "abc";
var password = "def";
var requestUri = "https://blah/blah/blah/1";
var credentials = Convert.ToBase64String(Encoding.ASCII.GetBytes($"{login}:{password}"));
//client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", credentials);
//client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
var request = new HttpRequestMessage(HttpMethod.Get, requestUri);
request.Version = Version.Parse("1.1");
request.Headers.Authorization = new AuthenticationHeaderValue("Basic", credentials);
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
//ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
// Act
var response = await client.SendAsync(request);
// Assert
Console.WriteLine(response.StatusCode);
response.EnsureSuccessStatusCode();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment