All:
I'm new to REST and need to pass in an AppId and Token. I've tried several different approaches similar to:
var request = new HttpRequestMessage(new HttpMethod(httpMessageType),
requestMessage.RequestUri);
request.Headers.TryAddWithoutValidation("Accept", "application/json");
request.Headers.TryAddWithoutValidation("Authorization", $"Bearer {authString}");
I tried entering the url in Edge and received a 200 response with as expected data returned. Essentially I need to make the url look like this after adding the parameters:
https://<Address>/auth/v1/appToken?appId=<AppId string>&Token=<Token string>
Can anyone help me to understand how this can be done? The API is hosted in AWS, if that helps.
Thanks in advance!

