Python:模仿登录以猎取新浪微博OAuth的code参数值

在运用新浪微博供应的API时,起首须要经由过程认证和受权,关于这部份,人人能够参考下这篇文章

在完成以上步骤后,人人会发明每次要运用微博API之前,都须要我们手动输入code参数的值才行。
个中,code参数的值是在浏览器的地址栏中,也就是说,只需我们能运用代码正确地模仿浏览器发包,那末也就可以获得code参数的值。
以下贴上响应的完成代码:

__author__ = 'Fly'
# -*- coding: utf-8 -*-
from weibo import APIClient
import urllib2
import urllib

#APP_KEY和APP_SECRET,须要新建一个微博运用才获得
APP_KEY = 'xxxxxxxx'
APP_SECRET = 'xxxxxxxxxxxxxxxxxxx'
#管理中心---运用信息---高等信息,将"受权回调页"的值改成https://api.weibo.com/oauth2/default.html
CALLBACK_URL = 'https://api.weibo.com/oauth2/default.html'
AUTH_URL = 'https://api.weibo.com/oauth2/authorize'

def GetCode(userid,passwd):
    client = APIClient(app_key = APP_KEY, app_secret=APP_SECRET, redirect_uri=CALLBACK_URL)
    referer_url = client.get_authorize_url()
    postdata = {
        "action": "login",
        "client_id": APP_KEY,
        "redirect_uri":CALLBACK_URL,
        "userId": userid,
        "passwd": passwd,
        }

    headers = {
        "User-Agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:25.0) Gecko/20100101 Firefox/25.0",
        "Referer":referer_url,
        "Connection":"keep-alive"
    }
    req  = urllib2.Request(
        url = AUTH_URL,
        data = urllib.urlencode(postdata),
        headers = headers
    )
    resp = urllib2.urlopen(req)
    return resp.geturl()[-32:]
if __name__ == "__main__":
    print GetCode(用户名,暗码)
    原文作者:07未
    原文地址: https://segmentfault.com/a/1190000000343851
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞