Vorlage für die Entwicklung von Wechat in Rails.
Verarbeiten Sie Nachrichten mit Eric-Guo/wechat
UI-Bibliothek mit Weui mit Weui-Rails
Bezahlen Sie mit jasl/wx_pay
OAuth2 mit Skinnyworm/omniauth-wechat-oauth2
Von Le Wagon Shanghai gesponsertes Servicekonto
Anforderungen
PostgreSQL
Konfigurieren Sie „服务器地址“ als http://your-domain.com/wechat
Konfigurieren Sie „测试授权目录“ als http://your-domain.com/
Installieren
Erstellen Sie Ihr neues Projekt und fügen Sie dieses Repo als Vorlage hinzu
mkdir your_app
cd your_app
git init
git remote add template https://github.com/Eric-Guo/wechat-starter.git
git fetch template
git checkout -b master template/master
bundle install
rake db:create
rake db:migrate
Erstellen Sie config/application.yml
und konfigurieren Sie die folgenden Informationen:
wechat_app_id : " AppID "
wechat_secret : " AppSecret "
wechat_token : " Token "
wechat_encoding_aes_key : " EncodingAESKey "
wechat_trusted_domain_fullname : " http://your_dev.proxy.qqbrowser.cc "
# following is optional if you don't need wechat pay
wechat_pay_mch_id : " merchant id "
wechat_pay_api_key : " 32 bits api key configured in pay.weixin.qq.com "
wechat_pay_notify_url : " url to accept pay result notification "
Server starten
puma -C config/puma.rb
Es hängt von Rails.env
ab, das Menü aus dem Konfigurationsordner auszuwählen.
Wenn beispielsweise Rails.env == production
, wird config/menu_production.yaml
ausgewählt.
# create menu
rake wechat:menu_create
# show menu
rake wechat:menu