python基于django的博客系统(利用django+wechat-python-sdk 创建微信服务器接入的方法)
类别:脚本大全 浏览量:2150
时间:2022-01-27 01:32:39 python基于django的博客系统
利用django+wechat-python-sdk 创建微信服务器接入的方法1、版本说明 :python 2.7.10, django (1.6.11.6),centos7
2、步骤说明:
a、django 建立项目
|
django - admin.py startproject projtest |
之后启动服务器,看看是否正确:
|
cd projtest |
配置 projtest子目录下面的setting.py文件,允许外部机器访问
|
[root@vm_4_128_centos projtest] # vim projtest/settings.py |
把其中allowed_hosts改成如下
|
allowed_hosts = [ '*' ] |
然后启动,外部机器 看看能否访问到:
|
# python manage.py runserver 0.0.0.0:80 |
b、创建应 用wechat
|
[root@vm_4_128_centos projtest] # python manage.py startapp wechat [root@vm_4_128_centos projtest] # ls manage.py projtest wetchat |
c、安装wechat_sdk
|
[root@vm_4_128_centos projtest] # pip install wechat-sdk requirement already satisfied: wechat - sdk in / usr / lib / python2. 7 / site - packages requirement already satisfied: six = = 1.10 . 0 in / usr / lib / python2. 7 / site - packages ( from wechat - sdk) requirement already satisfied: requests = = 2.6 . 0 in / usr / lib / python2. 7 / site - packages ( from wechat - sdk) requirement already satisfied: pycrypto = = 2.6 . 1 in / usr / lib64 / python2. 7 / site - packages ( from wechat - sdk) requirement already satisfied: xmltodict = = 0.9 . 2 in / usr / lib / python2. 7 / site - packages ( from wechat - sdk) |
d、修改projtest/projtest/setting.py文件,加入应用
目录结构如下:
|
| - - manage.py | - - projtest | | - - __init__.py | | - - __init__.pyc | | - - settings.py | | - - settings.pyc | | - - urls.py | | - - urls.pyc | | - - wsgi.py | ` - - wsgi.pyc ` - - wetchat | - - __init__.py | - - admin.py | - - models.py | - - tests.py ` - - views.py |
vim projtest/settings.py
|
` - - wetchatinstalled_apps = ( 'django.contrib.admin' , 'django.contrib.auth' , 'django.contrib.contenttypes' , 'django.contrib.sessions' , 'django.contrib.messages' , 'django.contrib.staticfiles' , 'wechat' , ) |
注:应用名称后面要有逗号
e、在wechat目录下,重写views.py文件,代码如下(参考网上例子):
|
#!/usr/bin/python # -*- coding: utf-8 -*- # create your views here. from django.shortcuts import render from django.http import httpresponse from django.views.decorators.csrf import csrf_exempt from django.views.generic.base import view from django.template import loader, context from wechat_sdk import wechatbasic token = 'zwbswx' class wechat(view): #这里我当时写成了防止跨站请求伪造,其实不是这样的,恰恰相反。因为django默认是开启了csrf防护中间件的 #所以这里使用@csrf_exempt是单独为这个函数去掉这个防护功能。 @csrf_exempt def dispatch( self , * args, * * kwargs): return super (wechat, self ).dispatch( * args, * * kwargs) def get( self , request): wechat = wechatbasic(token = token) if wechat.check_signature(signature = request.get[ 'signature' ], timestamp = request.get[ 'timestamp' ], nonce = request.get[ 'nonce' ]): if request.method = = 'get' : rsp = request.get.get( 'echostr' , 'error' ) else : wechat.parse_data(request.body) message = wechat.get_message() rsp = wechat.response_text(u '消息类型: {}' . format (message. type )) else : rsp = wechat.response_text( 'check error' ) return httpresponse(rsp) |
f、修改projtest/projtest/urls.py ,添加映射到微信应用(类似servlet)
[root@vm_4_128_centos projtest]# vim projtest/urls.py
|
from django.conf.urls import patterns, include, url from django.contrib import admin from wechat import views as wt_views ##增加本行 admin.autodiscover() urlpatterns = patterns('', # examples: # url(r'^$', 'projtest.views.home', name='home'), # url(r'^blog/', include('blog.urls')), url(r '^admin/' , include(admin.site.urls)), url(r '^wechat' , wt_views.wechat.as_view()), ##增加本行 ) |
)
g、微信提交配置通过
|
05 / jun / 2017 03 : 31 : 01 ] "get /wechat?signature=8a75afb21cf821bbc4e2535119aa05be5c987112&echostr=13869464754252084605×tamp=1496633461&nonce=3957453572 http/1.0" 301 0 [ 05 / jun / 2017 03 : 31 : 01 ] "get /wechat/?signature=8a75afb21cf821bbc4e2535119aa05be5c987112&echostr=13869464754252084605×tamp=1496633461&nonce=3957453572 http/1.0" 200 20 |
以上这篇利用django+wechat-python-sdk 创建微信服务器接入的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持开心学习网。
原文链接:https://blog.csdn.net/zwbill/article/details/72864000
您可能感兴趣
- python语言案例教程单元测试(Python单元和文档测试实例详解)
- python class转json(Python对象转换为json的方法步骤)
- 如何用python识别微信内容(Python 实现微信防撤回功能)
- python中怎么查看函数的用法(Python中函数的基本定义与调用及内置函数详解)
- 如何对python中列表中的数据运算(Python3.5集合及其常见运算实例详解)
- python yield 使用浅析(yii框架使用分页的方法分析)
- 用python图片转字符串(python实现图片转字符小工具)
- python3.7手册中文版(Python3.4解释器用法简单示例)
- python编程加密解密(python实现AES加密解密)
- python对mysql数据分析(python使用adbapi实现MySQL数据库的异步存储)
- python用于机器人(python控制nao机器人身体动作实例详解)
- pythonflask系列教程(Python安装Flask环境及简单应用示例)
- python后端生成的pdf文件(Python实现截取PDF文件中的几页代码实例)
- python3第三方库手册(使用python3构建文件传输的方法)
- python基于django的博客系统(利用django+wechat-python-sdk 创建微信服务器接入的方法)
- python能把时间转化成毫秒级吗(python 获取毫秒数,计算调用时长的方法)
- 对你思念入骨的女人,跟你见面时会有这几种表现,藏都藏不住(对你思念入骨的女人)
- 纳兰性德绝美作,一场重逢,成就最后一首称得上惊艳的《如梦令》(纳兰性德绝美作)
- 如何快速赚钱(如何快速赚钱方法真实有效)
- 这里输入关键词(如何输入关键词)
- 熊猫中国国宝(熊猫国宝酒53酱香)
- 春节会放假几天(春节会放假吗)
热门推荐
- vue用于动态切换组件的内置组件(Vue 可拖拽组件Vue Smooth DnD的使用详解)
- pythonsocket建立多用户通讯(Python socket实现多对多全双工通信的方法)
- dockerbuild清除缓存(Docker自动化构建Automated Build实现过程图解)
- 浅谈Python3中strip()、lstrip()、rstrip()用法详解(浅谈Python3中strip、lstrip、rstrip用法详解)
- Chrome谷歌浏览器开发者工具中Profiles的使用
- dedecms时间代码(Dedecms中常用数据调用的sql语句汇总)
- pythontkinter项目界面(python Tkinter版学生管理系统)
- dedecms创建栏目(dedecms织梦模板栏目列表中添加统计文档数量的标签)
- vueassets文件路径(vue如何根据url下载非同源文件)
- meta标签中viewport
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9