We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32689ca commit e013711Copy full SHA for e013711
README.md
@@ -101,9 +101,9 @@ httpRequestMessage.Content = new FormUrlEncodedContent(new[]
101
new KeyValuePair<string, string>("session", "703438f3-16ad-4ba5-b923-8f72cd0f2db9"),
102
new KeyValuePair<string, string>("payload", requestBody),
103
});
104
-httpRequestMessage.Headers.Add("Authorization", $"Bearer {Guid.NewGuid
+httpRequestMessage.Headers.Add("Authorization", $"Bearer {Guid.NewGuid()}");
105
using var httpClient = new HttpClient();
106
-httpClient.BaseAddress = new Uri("http://localhost:1213/v1
+httpClient.BaseAddress = new Uri("http://localhost:1213/v1/");
107
httpClient.GenerateCurlInConsole(
108
httpRequestMessage,
109
config =>
0 commit comments