我想调用一个带有字符串作为参数的方法,然后将其发布到Facebook墙上而不显示对话框.当然只有在有效会话可用时.
我试过这个:
// post message to facebook pinnwall- (voID)postOnWall:(Nsstring *)message { NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys: message,@"message",nil]; [[FBRequest request] call:@"facebook.stream.publish" params:params];}
你们能用工作方法帮助我吗?
谢谢和欢呼,
doonot
简单代码:
NSMutableDictionary *fbarguments = [[NSMutableDictionary alloc] init];Nsstring *wallPost = @"the super wall post";Nsstring *linkURL = @"http://www.supersite.com";Nsstring *imgurL = @"http://www.supersite.com/image.jpg";[fbarguments setobject:wallPost forKey:@"message"];[fbarguments setobject:linkURL forKey:@"link"];[fbarguments setobject:imgurL forKey:@"picture"];[facebook requestWithGraPHPath:@"me/Feed" andParams:fbarguments andhttpMethod:@"POST" andDelegate:self];总结
以上是内存溢出为你收集整理的ios – 在Facebook墙上发布字符串而不显示对话框(iPhone Facebook SDK)全部内容,希望文章能够帮你解决ios – 在Facebook墙上发布字符串而不显示对话框(iPhone Facebook SDK)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)