django 위챗 공식 계정 백그라운드 구축

1273 단어
django는 개인적인 스타일에 비교적 부합된다. 그래서 django로 위챗 백스테이지를 만들어 놀았는데 결과는 비할 바 없이 아버지를 괴롭혔다.
def checkSignature(request):
    token = 'jasonbu'
    signature = request.GET.get('signature', '')
    timestamp = request.GET.get('timestamp', '')
    nonce = request.GET.get('nonce', '')
    echostr = request.GET.get('echostr', '')

    infostr = ''.join(sorted([token, timestamp, nonce]))
    if infostr:
        hashstr = hashlib.sha1(infostr).hexdigest()
        print 'signature:' + signature
        print 'hashstr:' + hashstr
        #if hashstr is signature:
        if hashstr == signature:
            return HttpResponse(echostr)
        else:
            print 'haststr is not signature'
    else:
        print 'infostr does not existing'
    return HttpResponse("what")

N을 여러 번 테스트했지만 실패하고 귀신이 곡할 노릇이다. 출력이 똑같고,
그리고 is를 ==로 바꿔보라고 했어요.
됐어... 
wechat-sdk 환경 헤더 파일 설치, 해결 방법
sudo apt-get install python-dev

테스트를 위해 lxml을 설치했습니다
sudo apt-get build-dep python-lxml
sudo pip install lxml --upgrade

2
나 울고 싶다 한참 뒤척이다 결국 서버 설정 때 '/' 하나 빠지면 다 정상이야 TAT

좋은 웹페이지 즐겨찾기