PHP Classes

WeChat PHP API Example Class: Exchange messages with WeChat users

Recommend this page to a friend!
  Info   Documentation   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not yet rated by the usersTotal: 74 All time: 10,216 This week: 524Up
Version License PHP version Categories
wechat 1.0.0Custom (specified...5PHP 5, Web services, Chat
Description 

Author

This package can be used to exchange messages with WeChat users.

It can send HTTP requests to the WeChat API Web servers to perform operation that allow sending and receiving messages to WeChat chat service users.

Currently it can listen to text or event messages and assign a callback function that can be used by applications of this package to automate responses to those messages.

Picture of Zimo Xiao
  Performance   Level  
Name: Zimo Xiao <contact>
Classes: 2 packages by
Country: China China

Documentation

<p align="center"><img width="320" src="https://xy.zuggr.com/file/angel_wechat.jpg"></p>

????

Angel?? ???Angel??????????

??

????Composer??Angel??:

composer create-project angel-project/framework .

????????:

composer require angel-project/wechat

GitHub php GitHub license

?????

???????/?????

  build::post('your/url',function(){

    $wx = new angel\wechat($appid,$secret,$token); //?????object

    $wx->listen('text','hi',function($input,$wx){
      $wx->return('text',[
        'to' => $input->FromUserName,
        'content' => 'hello!'
      ]);
    }); //?????hi???????hello!

    $wx->listen('event','subscribe',function($input,$wx){
      $wx->return('news',[
        'to' => $input->FromUserName,
        'articles' => [[
          'title' => 'hi!',
          'description' => 'long time no see',
          'picurl' => 'yoururl.com/img.jpg',
          'url' => 'yoururl.com'
        ]]
      ]); //????
    }); //???????????????

    $wx->run(); //????

  });

listen()???????? - ?????????text???????event?????? - ?????????????????????????SCAN?????subscribe?????CLICK???????????????????????????'empty'? - ??????????function?????????????object?????????????????????????????object???function???????????

????

  $wx = new angel\wechat($appid,$secret,$token); //?????object

  $menu = [[
    'type' => 'click',
    'name' => '????',
    'key' => 'welcome'
  ]]; //????click???????????????????????

  $at = $wx->access_token();  //??access token
  $wx->menu($at,$menu); //????

English Doc

Angel WeChat is a WeChat plugin based on Angel Framework

Installation

First, install Angel Framework with Composer using the following command:

composer create-project angel-project/framework .

Then, install Angel WeChat package:

composer require angel-project/wechat

GitHub php GitHub license


  Files folder image Files (4)  
File Role Description
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file README.md Doc. Documentation
Plain text file wechat.php Class Class source

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 100%
Total:74
This week:0
All time:10,216
This week:524Up