This is more of a technical question but the Developer Community has been pretty unhelpful thus far.
I want to make a GET request to the JIRA REST API from a Confluence Cloud macro I'm developing for my internship. Because Atlassian doesn't support cross-platform requests natively, I have to make the request outside of routes/index.js and instead in a script tag of the .hbs file in my views folder. I'm prototyping so I'm only using basic auth as detailed in the documentation. When I test it outside my app with the command line with curl and also straight up in my browser while I'm logged into Confluence I'm able to get the issues I want to return. But... when I attempt to make the request form within the .hbs file an OPTIONS request gets made instead and the Authentication header with the username and password that I set is not there...
This is the code that I'm using....
let url = 'https://site.atlassian.net/rest/api/3/search'
let h = new Headers(); h.append('Accept', 'application/json');
let encoded = window.btoa('USERNAME:APITOKEN'); let auth = "Basic " + encoded;
h.append('Authorization', auth)
let req = new Request(url, { method: 'GET', headers: h })
fetch(req)
.then( (res) => {
return res.json().then( (data) => {
if(res.ok) { return data; } else { return Promise.reject({status: res.status, data}); } }); }) .then((data) => { console.log(data); })
Does anyone know why this is happening?
The url you use should have `https` instead of `http`. Hope that helps.
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.