Forums

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

Confluence Authentication

Mark Giesen
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 15, 2014

We are tying to figure out how to connect our current website to the Confluence Wiki. Below is what we are using for development and at the bottom you can see the error message generated inthe response secetion.

Any assistance would be appreciated.

What we are using:

Php (laravel 4 framework)

Javascript (jquery)

Here is sample code:

$.ajax({

url: 'http://10.15.1.106:8090/rest/api/space/ds/content/?os_authType=basic',

type: 'GET',

dataType: 'json',

crossDomain: true,

beforeSend: function(xhr){

xhr.setRequestHeader("Authorization",

"Basic " + btoa("username:password"));

},

sucess: function(result) {

console.log(result);

}

});

Response:

1. OPTIONS http://10.15.1.106:8090/rest/api/space/ds/content/?os_authType=basic 401 (Unauthorized) jquery.js:7858

XMLHttpRequest cannot load http://10.15.1.106:8090/rest/api/space/ds/content/?os_authType=basic. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://10.15.4.87' is therefore not allowed access. (index):1



2 answers

0 votes
Timothy
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.
May 16, 2014

dataType must be jsonp for cross domains requests.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events