使用python facebook sdk在Facebook上发布更新/消息

时间:2019-01-29 09:17:32

标签: facebook-sdk-4.0

根据我从文档中获得的说明,这是我尝试使用sdk平台时遇到的错误

In [5]: graph = facebook.GraphAPI(access_token=my_access_token, version="2.12")

In [6]: graph.put_object(parent_object='me', connection_name='feed',
...:                   message='Hello, world http://68.183.98.238/blog/best-floor-for-high-traffic-areas')
---------------------------------------------------------------------------
GraphAPIError                             Traceback (most recent call last)
<ipython-input-6-e8b64d6b32a8> in <module>
    1 graph.put_object(parent_object='me', connection_name='feed',
----> 2                   message='Hello, world http://68.183.98.238/blog/best-floor-for-high-traffic-areas')

~/code/envs/decomagna/lib/python3.6/site-packages/facebook/__init__.py in put_object(self, parent_object, connection_name, **data)
    190             "{0}/{1}/{2}".format(self.version, parent_object, connection_name),
    191             post_args=data,
--> 192             method="POST",
    193         )
    194

~/code/envs/decomagna/lib/python3.6/site-packages/facebook/__init__.py in request(self, path, args, post_args, files, method)
    311
    312         if result and isinstance(result, dict) and result.get("error"):
--> 313             raise GraphAPIError(result)
    314         return result
    315

GraphAPIError: Invalid OAuth access token.

enter image description here

访问令牌与我从Facebook开发人员页面获得的令牌相同。

好像我没有提供足够的验证,尤其是代表我发帖。

1 个答案:

答案 0 :(得分:1)

首先:不再可能将消息发布到用户墙,publish_actions权限已弃用。https://developers.facebook.com/blog/post/2018/04/24/new-facebook-platform-product-changes-policy-updates/

也就是说,您可能正在使用屏幕快照中的“客户端令牌”,这是错误的。您将必须授予用户所需的权限,然后使用生成的用户令牌。