如何使用 Python 向其发出 HTTPS 请求?并取回 ACCESS_TOKN?

发布于 2024-08-31 14:00:13 字数 90 浏览 4 评论 0原文

https://graph.facebook.com/

我需要向其发出 HTTPS 请求。然后取回参数。怎么做呢?

https://graph.facebook.com/

I need to make an HTTPS request to that. And then get the params back. How to do that?

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

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

发布评论

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

评论(2

蓝眼泪 2024-09-07 14:00:13
import urllib2

r = urllib2.urlopen('https://graph.facebook.com')
print r.info()
html = r.read()
import urllib2

r = urllib2.urlopen('https://graph.facebook.com')
print r.info()
html = r.read()
浸婚纱 2024-09-07 14:00:13

使用 libhttp2

import httplib2
h = httplib2.Http(".cache")
resp, content = h.request("https://graph.facebook.com/", "GET")


>>> import httplib2
>>> h = httplib2.Http(".cache")
>>> resp, content = h.request("https://graph.facebook.com/", "GET")
>>> print resp
{'status': '200', 'content-length': '26244', 'content-location': 'http://developers.facebook.com/docs/api', 'transfer-encoding': 'chunked', 'set-cookie': 'PHPSESSID=d3cc7702c0fa0ea30eb9fd82cd93aa10; path=/, datr=1273298829-77768393a90862aba5e814235278103be75902e4150eea9368624; expires=Mon, 07-May-2012 06:07:09 GMT; path=/; domain=.facebook.com', 'expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'server': 'Apache/1.3.41.fb2', 'connection': 'close', '-content-encoding': 'gzip', 'pragma': 'no-cache', 'cache-control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'date': 'Sat, 08 May 2010 06:07:09 GMT', 'p3p': 'CP="DSP LAW"', 'content-type': 'text/html; charset=utf-8'}

Use libhttp2:

import httplib2
h = httplib2.Http(".cache")
resp, content = h.request("https://graph.facebook.com/", "GET")


>>> import httplib2
>>> h = httplib2.Http(".cache")
>>> resp, content = h.request("https://graph.facebook.com/", "GET")
>>> print resp
{'status': '200', 'content-length': '26244', 'content-location': 'http://developers.facebook.com/docs/api', 'transfer-encoding': 'chunked', 'set-cookie': 'PHPSESSID=d3cc7702c0fa0ea30eb9fd82cd93aa10; path=/, datr=1273298829-77768393a90862aba5e814235278103be75902e4150eea9368624; expires=Mon, 07-May-2012 06:07:09 GMT; path=/; domain=.facebook.com', 'expires': 'Thu, 19 Nov 1981 08:52:00 GMT', 'server': 'Apache/1.3.41.fb2', 'connection': 'close', '-content-encoding': 'gzip', 'pragma': 'no-cache', 'cache-control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'date': 'Sat, 08 May 2010 06:07:09 GMT', 'p3p': 'CP="DSP LAW"', 'content-type': 'text/html; charset=utf-8'}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文