Hi,
I am using the Claims Resolver "{OAUTH-KV:any custom query string}" to read a query parameter. That works fine but my problem is, that I need to set a default value when the query parameter is not part of the request.
The problem that I am having is Azure creates a Claim Type null, so there is no way to use a "precondition" in the UserJourney to do some logic. ClaimsExist is always true, and ClaimEquals doesn't work if I compare it against the value "Null" or an empty string.
I know that I could pass always a default value (Something like "skip"). So, I can use the ClaimEquals and check if the value is "skip." The problem with this solution is not backward compatible and it will break old clients.
Any suggestion on what can I do?
Thanks.