使用urllib2模块发送GET请求的代码如下:

    req = urllib2.Request("https://api.weibo.com/oauth2/revokeoauth2?access_token="+pre_access_token)
    res = urllib2.urlopen(req).read()
    if "result" in res:
        flash(u"您已成功退出登录,下次使用需要重新授权!")