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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.