【发布时间】:2014-07-28 06:44:34
【问题描述】:
我正在尝试使用 facebook graph api 将消息发布到我的墙上。我有我的 access_token。我已经尝试在我的浏览器中使用以下 URL。
https://graph.facebook.com/me/feed?message="Hii friends"&access_token=xxxxxxxxxx
但是消息没有发布。所以我无法解决这个问题。最后我想在 urllib2.urlopen() 中使用这个 URL
请帮忙
【问题讨论】:
-
您需要进行 POST 调用。你想要做的是 GET。
标签: python-2.7 facebook-graph-api