Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
Hey guys, so i have this angular script to pull in a json file I'm storing in Dropbox. my current issue is that I get an Access-Control-Allow-Origin error every time. I'm not really sure how to fix it...
<script type="text/javascript"> var app = angular.module("mig-usedgear", []) app.controller("myCtrl", function($scope, $http) { $http.get("http://www.dropbox.com/s/8g7fump2tnbohv2/items.json?raw=1") .then(function(response) { $scope.friends = response.data; }); }); </script>
The 'www.dropbox.com site' doesn't allow CORS like this.
You can technically make this work using 'dl.dropboxusercontent.com' (e.g., "http://dl.dropboxusercontent.com/s/8g7fump2tnbohv2/items.json"), but please note that isn't officially supported.
Hi there!
If you need more help you can view your support options (expected response time for a ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!