Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I'm evaluating the Javascript Hooks plugin for Bitbucket Server 5.0.1 and can't make it access JIRA via jira.getIssue(). I always get the 'Unable to locate KEY-123' error code when trying to access an _existing_ KEY-123 issue.
I have an application link to JIRA set up in "OAuth (impersonation)" mode, and the issue is accessible to the user.
What is wrong and how to fix it?
Hi @aamelkin,
There must not be any slash in the base url of JIRA.
For e.g :-
jira.getIssue('http://localhost:8080/', issueKey)
It must be
jira.getIssue('http://localhost:8080', issueKey)
Regards!
Thank you, Ajay!
This indeed was the problem. Now it works fine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.