I'm trying to get issues from Project with Jira Rest api, but my front requests returns No data.
it's like the api can't read my Basic authentication.
EX
response = axios.get(
"https://myCompany.atlassian.net/rest/api/3/issue/search?jql=project = MyProject",
{
headers: {
Authorization:
"Basic " +
btoa(
"email" +
":" +
"myToken"
),
},
}
);
Ref article: https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-search/#api-rest-api-3-search-get
Dear @Guilherme Cardoso de Almeida
Best Regards,
Seif,
Dear @Seifallah Bellassoued I finally fix my problem, it was just badly formated auth token
Solved:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.