can I comment as a bot with the same API, I have connect app my jwt token process looks like this:
atlassianJwt.encodeSymmetric(
{
iss: ‘hikaflow-app’,
iat: now.unix(),
exp: now.add(5, ‘minutes’).unix(),
qsh: atlassianJwt.createQueryStringHash(
atlassianJwt.fromMethodAndUrl(method, resource),
),
sub: data.clientKey,
},
installation.sharedSecret,
);
what should I need to change here