I'm trying to use the code below to get user links via facebook graph api. But it does not work.
$http.get('https://graph.facebook.com/me?access_token='+response.authResponse.accessToken).success(function(data) {
alert(data);
}).error(function(data, status, headers, config) {
alert(data+status+headers+config);
});