Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.