本文整理汇总了Python中urllib2.Request.method方法的典型用法代码示例。如果您正苦于以下问题:Python Request.method方法的具体用法?Python Request.method怎么用?Python Request.method使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类urllib2.Request
的用法示例。
在下文中一共展示了Request.method方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getbearertoken
# 需要导入模块: from urllib2 import Request [as 别名]
# 或者: from urllib2.Request import method [as 别名]
def getbearertoken():
API_Key = api.api_key
API_Secret = api.api_secret
token = API_Key+':'+API_Secret
encoded_token = base64.b64encode(token.encode('ascii'))
auth_url = "https://api.twitter.com/oauth2/token"
req = Request(auth_url)
req.method="POST"
req.add_header('Content-Type','application/x-www-form-urlencoded;charset=UTF-8')
req.add_header('Authorization','Basic %s' % token.decode('utf-8'))
data = 'grant_type=client_credentials'.encode('ascii')
response = urlopen(req,data)
raw_data = response.read().decode('UTF-8')
data = json.loads(raw_data)
bearer_token = data['access_token']