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 want to like a url using a like button as shown in the given link.

At bottom Like button is there click on the like button will like this page and shows in your facebook profile page under Activity block as shown below:

enter image description here

How can we like a url like that in iPhone App.If user is login with fb then just like if not login then login and then like.

Thanks in Advance.

share|improve this question

3 Answers

are you looking for this : Facebook like button

share|improve this answer
1  
yes,but for iPhone. – Hercules Feb 20 at 6:34

You can check the following link. https://github.com/brow/FacebookLikeView

share|improve this answer

Finally, I have done it.

Code to like Page URL using graph API is as Follows:

    - (IBAction)likepageonFB:(id)sender
{
    [appDelegate openSession];

     NSString *likePage=@"http://www.facebook.com/ipreencekmr";

    NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   likePage, @"object",[[NSUserDefaults standardUserDefaults] valueForKey:@"token"],@"access_token",
                                   nil];

    [FBRequestConnection startWithGraphPath:@"/me/og.likes" parameters:params HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {

        UIAlertView *alert=[[UIAlertView alloc] initWithTitle:nil message:[NSString stringWithFormat:@"liked with id %@",[result valueForKey:@"id"]] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
        [alert show];

        NSLog(@"result is %@",result);
    }];
}

You can check this example I have uploaded FBLike Button

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.