facebook 授权:打开 Safari.app 如何获得应用内对话框?
我需要为我的 Facebook 实现获得一些权限,但是当我在 Facebook 对象上调用以下方法时,我被发送到 Safari.app,但我已经看到应用程序有一个对话框,这就是我想要的...我怎样才能获得一个对话框而不是发送到 Safari ?
[facebook authorize:permissions delegate:self];
I need to get some permissions for my Facebook implementation, however when I call the following method on my Facebook object, I'm being sent to Safari.app, but I've seen apps have a dialog for this, and that's what I want... How can I get a dialog as opposed to being sent to Safari ?
[facebook authorize:permissions delegate:self];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Facebook.m 文件中,将
[selfauthorizeWithFBAppAuth:YES safariAuth:YES];
更改为[selfauthorizeWithFBAppAuth:NO safariAuth:NO];
In the Facebook.m file, change
[self authorizeWithFBAppAuth:YES safariAuth:YES];
to[self authorizeWithFBAppAuth:NO safariAuth:NO];