Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
patchoulish committed Nov 16, 2024
1 parent f49b0bb commit df8b5d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ var kagi = new KagiService("YOUR_KAGI_API_KEY");
Use an existing `HttpClient`, ensuring that `BaseAddress` and an `Authorization` header have been set:
```csharp
var httpClient = new HttpClient(
new KagiDelegatingHandler(),
new KagiDelegatingHandler()
{
InnerHandler = new HttpClientHandler()
},
disposeHandler: true)
{
BaseAddress = new Uri("https://kagi.com/api/v0/"),
Expand Down

0 comments on commit df8b5d3

Please sign in to comment.