2011-08-19 78 views

回答

0

试试这个会发布图片的描述,点击后会重定向到您提供的链接。

 NSMutableDictionary *params = 
     [NSMutableDictionary dictionaryWithObjectsAndKeys: 
     @"Post Feed", @"name", 
     @"Feed is Awesome.", @"caption", 
     @"Check out how to use Facebook.", @"description", 
     @"http://www.kamleshwar.com/blog",@"link", 
     @"http://i3.ytimg.com/vi/zqUW68itCec/default.jpg", @"picture", 
     nil]; 

    [facebook requestWithGraphPath:@"feed" 
         andParams:params 
        andHttpMethod:@"POST" 
         andDelegate:self]; 
相关问题