cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
Want to learn some quick and useful tips to make your day easier? Check out how Calvin uses Replay to get feedback from other teams at Dropbox here.

Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Re: Access-Control-Allow-Origin Issue using Core API via DfB Team API

Access-Control-Allow-Origin Issue using Core API via DfB Team API

Abhishek L.
New member | Level 1

I'm trying to use a Dropbox API, specifically one that allows a team administrator to take action for the team member, but I keep getting an access-control-error.

Here's my code:

$(document.body).on('click', '.viewfolders', function() {
    var teamMember = $(this).closest('tr').attr('id');
    //JSONinputs = {"list": "true"};
    jQuery.ajax( {
        url: 'https://api.dropbox.com/1/account/info',
        type: 'GET',
        dataType: 'json',
        contentType: 'application/json',
        headers: {
            'X-Dropbox-Perform-As-Team-Member': + teamMember,
            "Authorization": "Bearer " + access_token
        },
        beforeSend : function( xhr ) {
            xhr.setRequestHeader( "Access-Control-Allow-Origin", "*");                
        },
        success: function(rootresult) {               
           alert('success');
        },
        error: function(response) {
            alert('error ' + JSON.stringify(response));
        }
    });

});

Here's the error I get:

XMLHttpRequest cannot load https://api.dropbox.com/1/account/info. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.

Any ideas on what's going on here? Have tried using JSONP as a dataType and gotten a 401 authorization error. Not sure what I'm doing wrong here

3 Replies 3

Abhishek L.
New member | Level 1

Also, I am using this locally (no localhost or online domain, just my HDD)

Greg-DB
Dropbox Staff

[Cross-linking for reference: https://stackoverflow.com/questions/31038598/access-control-allow-origin-error-when-using-dropbox-ap... ]

This looks like a bug on our side. We're looking into it.

Greg-DB
Dropbox Staff

This should be fixed now.

Need more support?