iPhoneアプリからFacebookへのウォール投稿にこれを使用しています
kAppId =@"zsdgdfgjhjk";
if (!kAppId) {
NSLog(@"missing app id!");
exit(1);
return nil;
}
if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {
_permissions = [[NSArray arrayWithObjects:
// @"read_stream", @"publish_stream", @"offline_access",@"user_events",@"friends_events",@"rsvp_event",nil] retain];
@"read_stream",@"email", @"publish_stream", @"offline_access",@"user_events",@"friends_events",@"rsvp_event",@"create_event",nil] retain];
_facebook = [[Facebook alloc] initWithAppId:kAppId
andDelegate:self];
- (IBAction)publishStream:(id)sender {
SBJSON *jsonWriter = [[SBJSON new] autorelease];
NSDictionary* actionLinks = [NSArray arrayWithObjects:[NSDictionary dictionaryWithObjectsAndKeys:
@"Always Running",@"text",@"http://itsti.me/",@"href", nil], nil];
NSString *actionLinksStr = [jsonWriter stringWithObject:actionLinks];
NSDictionary* attachment = [NSDictionary dictionaryWithObjectsAndKeys:
@"a long run", @"name",
@"The Facebook Running app", @"caption",
@"it is fun", @"description",
@"http://itsti.me/", @"href", nil];
NSString *attachmentStr = [jsonWriter stringWithObject:attachment];
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Share on Facebook", @"user_message_prompt",
actionLinksStr, @"action_links",
attachmentStr, @"attachment",
nil];
[_facebook dialog:@"publish.stream"
andParams:params
andDelegate:self];
}
ウォールへの投稿は順調に進んでいますが、ユーザーの Facebook プロファイル名とそのための電子メールを取得したいので、ユーザーのログイン後にそのコードを試しています。
[_facebook requestWithGraphPath:@"me?fields=id,name,email" andDelegate:self];
と
- (void)request:(FBRequest *)request didLoad:(id)result
{
if ([result isKindOfClass:[NSDictionary class]]){
username = [result objectForKey:@"name"];
}
}
しかし、この fbrequest デリゲート メソッド- (void)request:(FBRequest *)request didLoad:(id)result
でも機能していません。呼び出されていません。ガイド、私は長い間ここで立ち往生しています。前もって感謝します。よろしく、サード。