HTTP 错误 403 Forbidden with urllib2 but not with urllib with facebook graph api

发布于 2024-12-05 17:54:27 字数 455 浏览 1 评论 0原文

我有以下带有 urllib2 的代码,它会打印 HTTP Error 403: Forbidden 但如果我使用 urllib 来获取 url,我不会看到任何错误,而且会得到我的朋友列表。在这两种情况下使用的访问令牌是相同的。

url = 'https://graph.facebook.com/me/friends/'
params = {'access_token': 'a valid access-token...', 'fields': 'id,name,birthday'}
req = urllib2.Request(url, data=urllib.urlencode(params))
try:
  con = urllib2.urlopen( req )
  print con.read()
except Exception as excp:
  print excp.read()

请提出可能有什么问题。

I have the following code with urllib2 which prints HTTP Error 403: Forbidden but if I use urllib instead to fetch url, I don't see any error and I do get a list of my friends. The access token used is same in both the cases.

url = 'https://graph.facebook.com/me/friends/'
params = {'access_token': 'a valid access-token...', 'fields': 'id,name,birthday'}
req = urllib2.Request(url, data=urllib.urlencode(params))
try:
  con = urllib2.urlopen( req )
  print con.read()
except Exception as excp:
  print excp.read()

Please suggest what might be wrong.

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

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

发布评论

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

评论(1

痴骨ら 2024-12-12 17:54:27

这个问题现在已经解决了。问题在于请求应该是 GET 而不是 POST,因此所有查询参数都应该通过 url 传递,而不是作为 POST 数据传递。因此,就我而言,要交朋友,代码将如下所示:

url = 'https://graph.facebook.com/me/friends/'
params = {'access_token': 'a valid access-token...', 'fields': 'id,name,birthday'}

try:
  con = urllib2.urlopen( url + '?' + urllib.urlencode(params))
  print con.read()
except Exception as excp:
  print excp

希望它可以帮助某人。

This one is solved now. The trouble was that the request should be GET not POST and thus all the query parameters should be passed with url instead of being passed as POST data. So in my case the to get friends the code would look something like this:

url = 'https://graph.facebook.com/me/friends/'
params = {'access_token': 'a valid access-token...', 'fields': 'id,name,birthday'}

try:
  con = urllib2.urlopen( url + '?' + urllib.urlencode(params))
  print con.read()
except Exception as excp:
  print excp

Hope it helps someone.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文