黄色草逼视频_久久夜夜视频_亚洲国产成人久久午夜_三级在线播放

網(wǎng)站改版|WAP網(wǎng)站制作|域名注冊|虛擬主機(jī)|服務(wù)器|海微商|海微信|海微通| 無障礙| 24小時(shí)服務(wù)電話:13807590485
海南網(wǎng)站建設(shè)海南網(wǎng)站制作海口網(wǎng)站建設(shè)三亞網(wǎng)站建設(shè)儋州網(wǎng)站建設(shè)五指山網(wǎng)站建設(shè)文昌網(wǎng)站建設(shè)瓊海網(wǎng)站建設(shè)萬寧網(wǎng)站建設(shè)東方網(wǎng)站建設(shè)定安網(wǎng)站建設(shè) 網(wǎng)站首頁網(wǎng)站首頁 網(wǎng)站建設(shè)網(wǎng)站建設(shè) 微信開發(fā)微信開發(fā) 網(wǎng)站推廣網(wǎng)站推廣 海南網(wǎng)站建設(shè)公司,海南網(wǎng)站開發(fā)制作公司,海南網(wǎng)頁設(shè)計(jì)公司,海南小程序開發(fā)公司,海南微信公眾號(hào)開發(fā)公司,海南網(wǎng)絡(luò)公司,海南世紀(jì)華聯(lián)海南世紀(jì)華聯(lián) 網(wǎng)站超市網(wǎng)站超市 客戶案例客戶案例 網(wǎng)站模板網(wǎng)站模板 關(guān)于我們關(guān)于我們
  • 微信開發(fā)
  • 持之以恒
  • 網(wǎng)站設(shè)計(jì)制作
  • 中立五年回報(bào)客戶
無障礙
微信開發(fā)
微信系統(tǒng)開發(fā) 微信開發(fā)功能 公眾號(hào)基礎(chǔ)教程 開發(fā)技術(shù)資訊 公眾號(hào)推廣營銷 客戶案例
聯(lián)系我們
QQ服務(wù)群:28519571 工作時(shí)間:86-0898-31568080 傳真號(hào)碼:86-0898-31568085 24小時(shí)服務(wù):0138-07590485
 您現(xiàn)在的位置: 首頁 >> 微信開發(fā) >> 開發(fā)技術(shù)資訊 開發(fā)技術(shù)資訊
使用PYTHON 模擬微信服務(wù)端
世紀(jì)華聯(lián) | 2018-01-26 23:57:40 | 閱讀:13679
# -*- coding: utf-8 -*-
#/usr/bin/env python

__version__ = '0.1'
__author__  = 'http://weibo.com/wtmmac'

'''
微信Server模擬
'''

import sys, urllib, httplib, time, hashlib, random

# 配置
interface_url = 'www.xxx.net'
interface_path = '/interface/weixin.php'
Token = 'weixin'

messages = {
    # 用戶關(guān)注消息
    'subscribe' : '''<xml><ToUserName><![CDATA[測試服務(wù)帳號(hào)]]></ToUserName>
    <FromUserName><![CDATA[小黑]]></FromUserName>
    <CreateTime>123456789</CreateTime>
    <MsgType><![CDATA[event]]></MsgType>
    <Event><![CDATA[subscribe]]></Event>
    <EventKey><![CDATA[EVENTKEY]]></EventKey>
    </xml>''',

    # 用戶發(fā)送文本信息
    'text': '''<xml>
    <ToUserName><![CDATA[測試服務(wù)帳號(hào)]]></ToUserName>
    <FromUserName><![CDATA[小黑]]></FromUserName> 
    <CreateTime>1348831860</CreateTime>
    <MsgType><![CDATA[text]]></MsgType>
    <Content><![CDATA[周杰倫]]></Content>
    <MsgId>1234567890123456</MsgId>
    </xml>'''

}

def make_post(action):
    '''模擬用戶行為產(chǎn)生的消息提交給接口程序'''

    conn = httplib.HTTPConnection(interface_url)

    headers = { "Content-type": "text/xml",
                "Content-Length": "%d" % len(messages[action])}

    # 生成簽名相關(guān)變量
    timestamp = int(time.time())

    nonce = random.randint(1,100000)

    signature = makeSignature(Token, timestamp, nonce)

    params = urllib.urlencode({'signature': signature, 'timestamp': timestamp, 'nonce': nonce})

    conn.request("POST", interface_path + "?" +params, "", headers)

    conn.send(messages[action])

    response = conn.getresponse()

    print response.status, response.reason

    print response.read()

    conn.close()



def makeSignature(Token, timestamp, nonce):
    '''生成簽名'''
    try:
        Token = int(Token)
    except Exception, e:
        pass

    sorted_arr = map(str, sorted([Token, timestamp, nonce]))

    sha1obj = hashlib.sha1()
    sha1obj.update(''.join(sorted_arr))
    hash = sha1obj.hexdigest()

    return hash

def listAction():
    print("======Supported actions:======")
    for i in messages.keys():
        print(i)
    print("==============================")

if __name__ == '__main__':
    if len(sys.argv) < 2:   
        print (u"Please input your action")
        listAction()
    else:
        if (messages.has_key(sys.argv[1])):
            make_post(sys.argv[1])
        else:
            print("No this action")
            listAction()
海南網(wǎng)站建設(shè)|海南網(wǎng)站制作|海口網(wǎng)站建設(shè)|三亞網(wǎng)站建設(shè)|儋州網(wǎng)站建設(shè)|五指山網(wǎng)站建設(shè)|文昌網(wǎng)站建設(shè)|瓊海網(wǎng)站建設(shè)|萬寧網(wǎng)站建設(shè)|東方網(wǎng)站建設(shè)|定安網(wǎng)站建設(shè)|屯昌網(wǎng)站建設(shè)|澄邁網(wǎng)站建設(shè)|臨高網(wǎng)站建設(shè)|白沙網(wǎng)站建設(shè)|昌江網(wǎng)站建設(shè)|樂東網(wǎng)站建設(shè)|陵水網(wǎng)站建設(shè)|保亭網(wǎng)站建設(shè)|瓊中網(wǎng)站建設(shè)|海口精英網(wǎng)|三亞精英網(wǎng)|文昌精英網(wǎng)|瓊海精英網(wǎng)|陵水精英網(wǎng)|儋州精英網(wǎng)|萬寧精英網(wǎng)|澄邁精英網(wǎng)|海微通
合作伙伴 企業(yè)發(fā)展 企業(yè)文化 聯(lián)系我們 在線訂購 網(wǎng)站地圖 返回首頁手機(jī)版
海口世紀(jì)華聯(lián)科技有限公司2025版權(quán)所有 24小時(shí)服務(wù)熱線:13807590485   歡迎來電咨詢
地址:海南省.海口市.海甸二東路環(huán)惠大廈6樓(南寶路明都大廈107#) 公司電話:0898-31568080 31568060 QQ:85398489
全國合作聯(lián)盟分布:海南海口 四川成都 湖北武漢 湖南長沙 安徽合肥 廣東深圳 山西太原 西藏拉薩
技術(shù)服務(wù): E_mail:server@www.0118yy.com 服務(wù)訂購:E_mail:server@www.0118yy.com 在線客服邀請 瓊ICP備10201086號(hào)-15
推廣關(guān)鍵字:海南網(wǎng)站建設(shè)公司,海南網(wǎng)站制作公司,海南網(wǎng)站開發(fā)公司,海南微信開發(fā)公司,海南微信公眾號(hào)開發(fā)公司,海南微信公眾號(hào)代運(yùn)營公司,海南模板網(wǎng)站制作公司,海南網(wǎng)頁設(shè)計(jì)公司,海南網(wǎng)絡(luò)公司