I\'m using facebook node sdk for node.js to get information from a facebook user such as their feed and friends, which is working fine.
However I\'m having an issue wher
Instead of using:
feedItems.concat(response.data);
I have made: (if is the case on response.data has the data)
for(var i in response.data){ feedItems.push(response.data[i]); }