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 have implemented facebook and twitter for ios6, but I'm not getting user details like name, email, image. Would help me anybody for this? Below is my code:

-(IBAction)facebook
{   
    SLComposeViewController *fbController=[SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];


    if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook])
    {
        SLComposeViewControllerCompletionHandler __block completionHandler=^(SLComposeViewControllerResult result){

            [fbController dismissViewControllerAnimated:YES completion:nil];


        switch(result){
            case SLComposeViewControllerResultCancelled:
            default:
            {
                NSLog(@"Cancelled.....facebook");

            }
                break;
            case SLComposeViewControllerResultDone:
            {
                NSLog(@"Posted....facebook");
            }
                break;
        }};

    [fbController addImage:[UIImage imageNamed:@"ipadicon_72x72.png"]];
    [fbController setInitialText:@"Check out this article."];

    //[fbController addURL:[NSURL URLWithString:@"http://soulwithmobiletechnology.blogspot.com/"]];
    [fbController setCompletionHandler:completionHandler];
    [self presentViewController:fbController animated:YES completion:nil];
}
}
share|improve this question
SLComposeViewController is not used for retrieving user information. – WrightsCS Nov 9 '12 at 19:48

1 Answer

See this info on using the Twitter framework and how to get information from Twitter, specifically, see Step 7.

http://mobile.tutsplus.com/tutorials/iphone/ios-sdk_twitter-framework_twrequest/

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.