Does anyone know the steps to parse this specific API with the help of Angular
? My goal is to extract all elements from the unis
array.
$http.get('https://www.coursera.org/maestro/api/topic/list2').success(function(data)
{
console.log("UniCtrl:" + data.unis);
$scope.unis = data.unis;
});
However, when I try to access data.unis
, it returns as undefined
.