Passing Authentication Header Token when Posting Data to API Using C#

A guide on how to pass the Authentication Header Token when making a POST request to an API using C# by utilizing HttpClient and a Bearer Token.

In this article, you'll learn how to pass an Authentication Header Token when making a POST request to an API using C#. We will use the HttpClient class to send data along with a Bearer Token in the request header.

C# code:

using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;

class Program
{
    static async Task Main(string[] args)
    {
        // API URL
        var apiUrl = "https://example.com/api/data";

        // Your Token
        var token = "your_token_here";

        // POST data
        var jsonData = "{\"name\":\"John Doe\",\"age\":30}";
        
        using (var client = new HttpClient())
        {
            // Add Authentication Header with Bearer Token
            client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", token);

            // Create HttpContent from JSON data
            var content = new StringContent(jsonData, Encoding.UTF8, "application/json");

            // Send POST request
            var response = await client.PostAsync(apiUrl, content);

            // Check the result
            if (response.IsSuccessStatusCode)
            {
                var responseData = await response.Content.ReadAsStringAsync();
                Console.WriteLine($"Response from API: {responseData}");
            }
            else
            {
                Console.WriteLine($"Request failed. Status Code: {response.StatusCode}");
            }
        }
    }
}

Detailed explanation:

  1. using System.Net.Http: Includes the System.Net.Http namespace to work with HttpClient.
  2. var apiUrl = "https://example.com/api/data";: The URL of the API you want to send data to.
  3. var token = "your_token_here";: Assigns your token to the token variable.
  4. client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", token);: Passes the token into the Authentication Header as "Bearer".
  5. var content = new StringContent(jsonData, Encoding.UTF8, "application/json");: Creates an HttpContent object from the JSON data to be sent with the request.
  6. var response = await client.PostAsync(apiUrl, content);: Sends the POST request to the API with the JSON data and token in the header.
  7. if (response.IsSuccessStatusCode): Checks if the request was successful and processes the response accordingly.

System Requirements:

  • .NET Core 3.1 or higher, or .NET Framework 4.5 or higher.

How to install:

Use the following command to create a new .NET Core Console project:

dotnet new console -n MyHttpClientApp

Tips:

  • Always validate the token before making the request.
  • Use try-catch blocks to handle potential errors when sending HTTP requests.


Related

Convert markdown string to HTML using C#

A guide on how to convert a markdown string into HTML in C# using the MarkdownSharp library.
Common Functions Used with Selenium Chrome in C#

This article lists and describes common functions used when working with Selenium Chrome in C#. These functions help automate tasks in the Chrome browser effectively.
Comprehensive guide to concatenating strings in C#

A detailed guide on all the ways to concatenate strings in C#, including the concatenation operator, string methods, and other efficient approaches.
How to DELETE data from a MySQL database using C#

A guide on how to use Prepared Statements in C# to delete data from a table in a MySQL database safely and effectively using multiple parameters.
How to convert Unicode characters with diacritics to non-diacritics in C#

A detailed guide on how to convert Unicode characters with Vietnamese diacritics into non-diacritic characters in C#.
Multithreading in C#

A comprehensive guide on how to implement multithreading in C# to make better use of CPU resources and enhance application performance by executing multiple tasks simultaneously.
Guide to Reading Excel Files Using C#

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using C#, utilizing the EPPlus library with step-by-step installation and illustrative examples.
Generating Captcha Code in C#

A guide on how to create a Captcha code using C# to protect web forms and applications from automated access. This tutorial demonstrates how to use the `System.Drawing` library to generate Captcha images.
How to UPDATE data in a MySQL database using C#

A guide on how to use Prepared Statements in C# to update data in a MySQL table safely and efficiently with multiple parameters.
How to Write Data to Excel File in C#

A detailed guide on how to write data to an Excel file in C# using the EPPlus library, making it easy to store and manage data in Excel spreadsheets.

main.add_cart_success