JIRA to SNOW Integration: "Bad Token" Error After Upgrading to Version 10Issue After upgrading JIRA to Version 10, the integration between JIRA and ServiceNow (SNOW) fails with a "Bad Token" error. This issue is observed in the logs as: SEVERE *** ERROR *** sn_jira_spoke (JiraWebhookAuthenticator): Bad tokenReleaseJIRA v10CauseThis is a known issue in JIRA 10 related to how it handles encoded characters—specifically the %3D character in webhook URLs.https://jira.atlassian.com/browse/JRASERVER-78312ResolutionAs a workaround, you can double encode the URL to bypass the Jira issue with %3D characters. Steps: Navigate to the Jira Webhook Registry in ServiceNow.Click on the Callback URL.Copy the token part of the URL (everything after the = sign).Use a tool like urlencoder.io to double encode the token.Recombine the encoded token with the base part of the URL from the Jira Webhook Registry.Update the full URL in Jira to use this modified URL for Webhook requests. Alternatively, you can manually replace % in the token with %25 to avoid using a third-party tool.