Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Send SDK version in headers #68

Merged
merged 3 commits into from
Nov 8, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/Passwordless/PasswordlessClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ namespace Passwordless;
[DebuggerDisplay("{DebuggerToString(),nq}")]
public class PasswordlessClient : IPasswordlessClient, IDisposable
{
private static readonly string SdkVersion =
typeof(PasswordlessClient).Assembly.GetName().Version?.ToString(3) ??
// This should never happen, unless the assembly had its metadata trimmed
throw new InvalidOperationException("Could not determine SDK version.");
abergs marked this conversation as resolved.
Show resolved Hide resolved

private readonly HttpClient _http;
private readonly PasswordlessOptions _options;

Expand All @@ -21,7 +26,14 @@ private PasswordlessClient(HttpClient http, bool disposeClient, PasswordlessOpti
BaseAddress = new Uri(options.ApiUrl),
DefaultRequestHeaders =
{
{"ApiSecret", options.ApiSecret}
{
"ApiSecret",
options.ApiSecret
},
{
"Client-Version",
$".NET-{SdkVersion}"
}
}
};

Expand Down
Loading