Kirin 2bd919e148 commit | 2 lat temu | |
---|---|---|
.. | ||
src | 2 lat temu | |
.phplint.yml | 2 lat temu | |
.styleci.yml | 2 lat temu | |
BACKERS.md | 2 lat temu | |
LICENSE | 2 lat temu | |
README.md | 2 lat temu | |
composer.json | 2 lat temu |
📦 It is probably the best SDK in the world for developing Wechat App.
Special thanks to the generous sponsorship by:
关注我的公众号我们一起聊聊代码怎么样?
SDK 对所使用的框架并无特别要求
composer require "overtrue/wechat:~3.1" -vvv
基本使用(以服务端为例):
<?php
use EasyWeChat\Foundation\Application;
$options = [
'debug' => true,
'app_id' => 'wx3cf0f39249eb0e60',
'secret' => 'f1c242f4f28f735d4687abb469072a29',
'token' => 'easywechat',
'log' => [
'level' => 'debug',
'file' => '/tmp/easywechat.log',
],
// ...
];
$app = new Application($options);
$server = $app->server;
$user = $app->user;
$server->setMessageHandler(function($message) use ($user) {
$fromUser = $user->get($message->FromUserName);
return "{$fromUser->nickname} 您好!欢迎关注 overtrue!";
});
$server->serve()->send();
更多请参考http://easywechat.org/。
强烈建议看懂微信文档后再来使用本 SDK。
Laravel 5 拓展包: overtrue/laravel-wechat
MIT