Hello.
I've created a custom user flow, and we do not require an access token at the end of it. At the end of all our User Journeys, we have an orchestration step:
<OrchestrationStep Order="7" Type="SendClaims" CpimIssuerTechnicalProfileReferenceId="JwtIssuer" />
If I remove this step I get a validation error, stating I must have a SendClaims step.
I tried to make my own ClaimsProvider. I called it NoToken and took out as much as I could, but I was forced to keep in
<CryptographicKeys>
<Key Id="issuer_secret" StorageReferenceId="B2C_1A_TokenSigningKeyContainer" />
</CryptographicKeys>
But this seems to create an access token.
Is there any way I can avoid this?
Thanks
Stefan