当前位置: 首页>>代码示例>>Python>>正文


Python Request.method方法代码示例

本文整理汇总了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']
开发者ID:nikhil96sher,项目名称:social-media-api,代码行数:17,代码来源:views.py


注:本文中的urllib2.Request.method方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。