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 9c486cf commit 7116a7dCopy full SHA for 7116a7d
src/client/Microsoft.Identity.Client.Broker/WamAdapters.cs
@@ -191,6 +191,11 @@ public static NativeInterop.AuthParameters GetCommonAuthParameters(
191
authParams.Properties[kvp.Key] = kvp.Value;
192
}
193
194
+
195
+ //pass client sku and ver
196
+ Dictionary<string, string> msalIdParams = MsalIdHelper.GetMsalIdParameters(logger);
197
+ authParams.Properties["msal_client_sku"] = msalIdParams[MsalIdParameter.Product];
198
+ authParams.Properties["msal_client_ver"] = msalIdParams[MsalIdParameter.Version];
199
200
//pass extra query parameters if there are any
201
if (authenticationRequestParameters.ExtraQueryParameters != null)
0 commit comments