I am trying to get elements such as "Bret Taylor" from the following link without having to ask the user to login to facebook.
https://graph.facebook.com/btaylor
{
"id": "220439",
"name": "Bret Taylor",
"first_name": "Bret",
"last_name": "Taylor",
"link": "http://www.facebook.com/btaylor",
"username": "btaylor",
"gender": "male",
"locale": "en_US"
}
but using the following code outputs
[INFO] {
id = "https://graph.facebook.com/btaylor";
shares = 1;
}
To the console, how can I get "Bret Taylor" from the JSON, I have been trying to work it out for the past 2 days but everything I have come across requires Appcelerator to be authorised by the user via a login.
Titanium.Facebook.requestWithGraphPath('https://graph.facebook.com/btaylor',
{
},
'GET',
function(e) {
if (e.success) {
var parsedData = JSON.parse(e.result);
Ti.API.info('====================================');
Ti.API.info(parsedData);
//alert(e.result);
} else if (e.error) {
alert(e.error);
} else {
alert('Unknown response');
}
Any help would be greatly appreciated, thankyou