From c853e4ae271c67e2a500324bf29f84243728bfa6 Mon Sep 17 00:00:00 2001 From: konstantin Date: Mon, 5 Feb 2024 09:37:43 +0000 Subject: [PATCH] docs: Mention clients base address --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 24a4364..46525c4 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,10 @@ using TransformerBeeClient; var myAuthenticator = new ClientIdClientSecretAuthenticator("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET"); ``` +#### Base Address +The `HttpClient` instance used by the `TransformerBeeClient` has to have a `BaseAddress` set. +Use e.g. `https://transformerstage.utilibee.io` for our test system. + ### Use with ASP.NET Core This library is thought to be primarily used in ASP.NET Core applications. That's why it assumes that you have an `IHttpClientFactory` available in your dependency injection container.