如何使用 facebook-python-sdk 设置extend_permission?

发布于 2024-10-18 10:57:27 字数 298 浏览 0 评论 0原文

我找到了 pyFacebook 的这段代码..

client = facebook.Facebook(api_key, secret_key)
client.auth.createToken()
client.login()
client.auth.getSession()
client.request_extended_permission("publish_stream", popup=False)

但我想要 facebook-python-SDK 的类似代码,该代码请求扩展权限而不弹出 winoow ?

i found this code for pyFacebook ..

client = facebook.Facebook(api_key, secret_key)
client.auth.createToken()
client.login()
client.auth.getSession()
client.request_extended_permission("publish_stream", popup=False)

but i want the simliar code for facebook-python-SDK that request the extended permission without poping up the winoow ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福丶如此 2024-10-25 10:57:27
  1. 我们不再支持 Facebook python sdk。
  2. 如果没记错的话,Facebook python sdk 需要使用 JS SDK 进行身份验证,而 python sdk 只是提取了 cookie。
  3. 所有权限请求都要求您的应用程序/网站通过我们的权限对话框显示网络视图。
  4. 通过 HTTP 302 重定向来显示此对话框非常简单。请参阅https://developers.facebook.com/docs/authentication/
  1. we no longer support the Facebook python sdk.
  2. if memory serves, the Facebook python sdk required the use of JS SDK for authentication and the python sdk just pulled the cookie out.
  3. all permission requests require your app/site to display a web view with our permissions dialog.
  4. showing this dialog, is very simple to do via HTTP 302 redirects. see https://developers.facebook.com/docs/authentication/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文