iPhone在facebook connect sdk中发送数据
我已经尝试过 facebook connect 最新的 sdk 及其附带的 DemoApp,当用户触摸时发布按钮,它发送一条在 uiwebview [从 FB 加载] 中键入的消息,
[_facebook dialog:@"feed" andDelegate:self];
但我需要从我的应用程序发送一些数据,而不是键入的消息,那么我可以使用什么来从我的应用程序发送此字符串?
多谢!
I have tried the facebook connect latest sdk with the DemoApp it comes with, when the user touches the publish button, it sends a message that is typed in a uiwebview [loaded from FB],
[_facebook dialog:@"feed" andDelegate:self];
but I need to send some data from my app, not a typed message, so what can I use to send this strings from my app?
thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案,
是因为对话框方法是要求用户填写表单,
但发布该方法使用了 graph API! [这不适用于图表!!!]
最好的例子是这个 优秀教程
;)
Ive found the answer,
is because the dialog method is for asking user to fill the form,
but to post the method used the graph API! [which is not for graphs!!!]
the best example is this excellent tutorial
;)