开发者

how to set extended_permission using facebook-python-sdk?

开发者 https://www.devze.com 2023-02-12 11:15 出处:网络
i found this code for pyFacebook .. client = facebook.Facebook(api_key, secret_key) client开发者_JAVA百科.auth.createToken()

i found this code for pyFacebook ..

client = facebook.Facebook(api_key, secret_key)
client开发者_JAVA百科.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 ??


  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/
0

精彩评论

暂无评论...
验证码 换一张
取 消