Hi,
I am just learning to use Facebook for my app. Can you please let me know how to get this templateBundleId for letting the user post the content to his wall on facebook?
Quote:
Originally Posted by schimanke
-----
Code:
- (void)session:(FBSession*)session didLogin:(FBUID)uid { NSLog(@"User with id %lld logged in.", uid);
FBFeedDialog* dialog = [[[FBFeedDialog alloc] init] autorelease];
dialog.delegate = self;
dialog.templateBundleId = XXXXXXXX;
dialog.templateData = @"{\"key1\": \"value1\"}";
[dialog show];
}
-----
|