Thanks for the response
@ewilson.
We have tried using the VBO shared below, that is not compatible for our requirement as we need HS256 algorithm JWT.
Taking this VBO as reference we have tried creating another C# Code Stage to generate HS256 JWT token but we ran into namespace issues.
Code Line : JWTSecurityToken jwt = new JWTSecurityToken("api_key", "", claims, credentials, issuedAt, expires);
Error : The type or namespace name 'JWTSecurityToken' could not be found (are you missing a using directive or an assembly reference?)
We did included the '
System.IdentityModel.Tokens.Jwt.dll' in references but still issue persists.
Please advice
Thanks ..