Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Confluence REST API 404 from atlassian-connect-express macro

Akshit Sharma September 25, 2018

I am using this https://developer.atlassian.com/cloud/jira/platform/rest/v3/?utm_source=%2Fcloud%2Fjira%2Fplatform%2Frest&utm_medium=302#api-api-3-issue-issueIdOrKey-get

to get an issue details on my mobile using volley sending header like this

header("Authorization","Basic usernamepasswordstring")

 still it isn't working . Always gives 404 though i have permissions for this .

I am using jira rest api's

Need help .

 

1 answer

0 votes
Gregor Kasmann_Actonic
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 25, 2018

Have you tied to call REST API directly with the same autorization method?

curl -D- \
   -X GET \
   -H "Authorization: Basic ZnJlZDpmcmVk" \
   -H "Content-Type: application/json" \
   "https://your-domain.atlassian.net/rest/api/2/issue/QA-31"
Akshit Sharma September 25, 2018

Yes i have already tried this , It works fine with curl, But not when i use Rest Api's through postman or Android mobile

Suggest an answer

Log in or Sign up to answer