2013-02-20 53 views
0

我想使用像給定鏈接中顯示的按鈕來使用網址。我們如何使用FB登錄來訪問URL?

At bottom Like button is there 點擊喜歡按鈕會喜歡這個頁面,並顯示在你的Facebook個人資料頁面下活動塊,如下圖所示:

enter image description here

我們怎麼能喜歡就好,在iPhone應用程序的URL。如果用戶使用fb登錄,那麼就像不登錄然後登錄然後就像。

在此先感謝。

回答

1

最後,我都做到了。

代碼喜歡網頁URL中使用圖形API如下:

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

    NSString *[email protected]"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); 
    }]; 
} 

您可以檢查這個例子中,我已經上傳FBLike Button