I am trying to connect to tumblr API with angularJS
EDIT
I now I try to do:
JS:
tumblr.controller('tumblrs', function($scope, $http) {
$http.get("http://www.tinymediaempire.tumblr.com/api/read/json/")
.success(function(responses) {$scope.post = responses.response.posts;});
});
HTML:
<div ng-controller="tumblrs">
<ol>
<li ng-repeat="spost in post">{{ spost.photos[0].alt_sizes[0].url }}</li>
</ol>
</div>