ios – 在Facebook墙上发布字符串而不显示对话框(iPhone Facebook SDK)

ios – 在Facebook墙上发布字符串而不显示对话框(iPhone Facebook SDK),第1张

概述我一直在搜索stackoverflow和互联网,并没有为我的意图找到一个有效的解决方案. 我想调用一个带有字符串作为参数的方法,然后将其发布到Facebook墙上而不显示对话框.当然只有在有效会话可用时. 我试过这个: // post message to facebook pinnwall- (void)postOnWall:(NSString *)message { NSMutab 我一直在搜索stackoverflow和互联网,并没有为我的意图找到一个有效的解决方案.

我想调用一个带有字符串作为参数的方法,然后将其发布到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

解决方法 正如Aby所说,你必须充分发挥用户FB的Graph API.

简单代码:

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)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1078180.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存