发布时间:2019-09-22 08:06:11编辑:auto阅读(2203)
# -*- coding: utf-8 -*-
import requests
BASE_URL = 'https://api.github.com'
def construct_url(end_point):
return '/'.join([BASE_URL, end_point])
def basic_auth():
"""http基本认证"""
response = requests.get(construct_url('user'), auth=('5********', '**********'))
print response.text
print response.request.headers
basic_auth()
def basic_oauth():
headers = {'Authorization': 'token fafsffsfsfafasfasfasfsafafasf'}
response = requests.get(construct_url('user'), headers=headers)
print response.request.headers
print response.text
print response.status_code
from requests.auth import AuthBase
class GithubAuth(AuthBase):
def __init__(self, token):
self.token = token
def __call__(self, r):
#requests 加 headers
r.headers['Authorization'] = ''.join(['token', self.token])
return r
def oauth_advanced():
auth = GithubAuth('fafsffsfsfafasfasfasfsafafasf')
response = requests.get(construct_url('user'), auth=auth)
print response.text
oauth_advanced()
上一篇: python学习——POP3收取邮件
下一篇: python 静态变量
48634
47632
38427
35644
30091
26815
25828
20700
20447
18848
145°
222°
268°
279°
275°
276°
323°
377°
510°
498°