Skip to content

Instantly share code, notes, and snippets.

@romeoh
Created January 22, 2015 06:19
Show Gist options
  • Save romeoh/72b9c8914191e335fc0d to your computer and use it in GitHub Desktop.
Save romeoh/72b9c8914191e335fc0d to your computer and use it in GitHub Desktop.
angular.module('app', [])
.controller('apps', function($scope, $http){
var url = 'https://api.mongolab.com/api/1/databases/cheat/collections/projects?apiKey=<apiKey>'
$http
.get(url)
.success(function(data){
console.log(data)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment