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´m trying to code the next example: -One person make login in my app with Facebook, and get the authentification. -I want to show in a table view, the post that several people has writtren in a particular wall. So, each cell is a comment from one wall (for example a fans page). The user can write in a textfield, send his/her comment to the wall in facebook, and this new comment, appear for all the users in my app, in a new cell of the table view.

I already know how to get the authentification, and I know how to write in that wall. Even i Know how to get the entire post in the wall... But I don´t know how to use all this information to make the table view. First, I´m using FBConnetct. With this: [facebook requestWithGraphPath:@"AppName/feed" andDelegate:self]; And i get the entire information wall... a lot of information. How I can get only the messages for example??. Is possible to get only the messages with any kind of filter???. And the second dude... Is there any way to page the result? or maybe get only the last 5 post for example??. This is because if the wall has a lot of post, I will retrieve all of them, and maybe a only need the last to show, but i don´t want to loose time downloading all this information if I don´t need it. Any help??.

Thanks.

share|improve this question
1  
In order to get useful answers, you need to show what you've done and where you're stuck. No one will write a whole program for you, but we're happy to help with specific steps and nudges in the right direction. :) – Dustin Aug 3 '12 at 17:11

closed as not a real question by CBroe, Daniel, Josh Caswell, NJones, Donal Fellows Aug 4 '12 at 5:53

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Of course Dustin: This is what I did. Keep in mind, that all this is only a test. Just I´m trying to know what I can do before construct the final app. First, in appDelegate, I start using Facebook class to get the autentication. Of course, I use in appDelegate.h the appropiate Protocols.

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    facebook = [[Facebook alloc] initWithAppId:@"**APID**" andDelegate:self];
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    if ([defaults objectForKey:@"FBAccessTokenKey"] && [defaults objectForKey:@"FBExpirationDateKey"])
    {
        facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
        facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];

    }
    if (![facebook isSessionValid])
     {
              NSArray *permissions = [[NSArray alloc] initWithObjects:
              @"user_likes",
              @"read_stream",
             @"publish_stream",

                                       nil ];
              [facebook authorize:permissions];

    }

    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];

    UIButton *logOutButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    logOutButton.frame = CGRectMake(40, 40, 200, 40);
    [logOutButton setTitle:@"LOG OUT" forState:UIControlStateNormal];
    [logOutButton addTarget:self action:@selector(logoutButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
    [self.viewController.view addSubview:logOutButton];
    self.window.rootViewController = self.viewController;

    [self.window makeKeyAndVisible];
    return YES;
}

At this point when I run the app, i get the authentication. I use the next methods. Nothing to tell.

-(BOOL) application:(UIApplication *)application handleOpenURL:(NSURL *)url
{ 
    return [facebook handleOpenURL:url];
}

-(BOOL) application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
    NSLog(@"LLAMADA A application:(UIApplication *)application handleOpenURL:(NSURL *)url");
    return [facebook handleOpenURL:url]; 
}

I save the token key and the expiration date when the user has made login:

-(void) fbDidLogin
{
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    [defaults setObject:[facebook accessToken] forKey:@"FBAccessTokenKey"];
    [defaults setObject:[facebook expirationDate] forKey:@"FBExpirationDateKey"];
    [defaults synchronize];
}

Ok, at this point, all goes fine. I make a button, just for testing purposes. For example, if I want to get de post of a know wall, i´m using this:

-(void) logoutButtonClicked:(id) sender
{
[facebook requestWithGraphPath:@"143222125700776/posts" andParams:params andDelegate:self];
}

Fine, I retrieve the entire post here:

-(void) request:(FBRequest *)request didLoad:(id)result
{}

If I want to post in one wall, i´m using this:

NSMutableDictionary *parametros = [[NSMutableDictionary alloc] init ];
[parametros setObject:@"message" forKey:@"message"];
[parametros setObject:@"post" forKey:@"type"];
[facebook requestWithGraphPath:@"143222125700776/feed" andParams:parametros andHttpMethod:@"POST" andDelegate:self];

So, I´m able to read and write in one wall. This is my objective. But, the point of my question, is that I want to make a kind of chat using facebook. So, I want to use a table view for store the messages in the wall. A uitextfield with a button, which the user can write something and post it in the wall. So, my dudes are this: -When I retrieve the post of a wall, as I mentioned earlier ( [facebook requestWithGraphPath:@"143222125700776/posts" andParams:params andDelegate:self];), I retrieve the entire information of the post. If the wall has a lot of message, this retrieve data could be height. So, my first question is if is possible to get only the fields that I need. For example only the messages, user that wrote the message... only this. I don´t need the other information. I know that I can parser it, but my question is if maybe exist a way to filter the information that I need, and only retrieve this information. I have read something about "search" in Facebook official site... but I don´t know how to use it, and even if this is what i need. -My second dude, is if exist any way to page this information. For example, start the tableview with the first 20 messages, pull down, and get other 20... and so on... I read and use this [params setObject:@"2" forKey:@"limit"]; And this looks nice for my purposse. But maybe I will need first to know the entire number of post in the wall... I can know this data? -And finally, and maybe the most important aspect. I need any kind of update the info that exist in the wall. Imagine the tableView. You are wiht the app, watching the tableView, with all the comments. And one person from another site, write a new comment... I need that this new comment appear in your tableView. I read something about real time updates from facebook... but I don´t know if this is what I need, and in this case, I dont know how to implement it. Maybe exist a protocol launched when the wall registre a new entry? a new message?. So, this are my questions: -How to filter the results from the Page object... for example only retrieve message information and nothing more.... -How to know the total number o post in a wall. -How to get in real time updates from a wall.

Thanks, I hope you can help me. Thanks again!

share|improve this answer
Thanks guys for close my question without give time to explain my self. – fraktal Aug 4 '12 at 7:25

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