mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]提交测试文件及相应调整
This commit is contained in:
parent
c897f87574
commit
01ddd4f243
@ -12,11 +12,7 @@
|
||||
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
// 1. 手动加载入口文件
|
||||
include 'include.php';
|
||||
|
||||
// 2. 准备公众号配置参数
|
||||
$config = [
|
||||
return [
|
||||
'token' => 'test',
|
||||
'appid' => 'wx60a43dd8161666d4',
|
||||
'appsecret' => '71308e96a204296c57d7cd4b21b883e8',
|
||||
@ -28,27 +24,3 @@ $config = [
|
||||
'ssl_key' => '',
|
||||
'ssl_cer' => '',
|
||||
];
|
||||
|
||||
try {
|
||||
|
||||
// 3. 实例对应的接口对象
|
||||
$user = new \WeChat\User($config);
|
||||
|
||||
// 4. 调用接口对象方法
|
||||
$result = $user->getUserList();
|
||||
echo '<pre>';
|
||||
var_export($result);
|
||||
|
||||
// 5. 分配获取用户信息
|
||||
foreach (array_chunk($result['data']['openid'], 100) as $item) {
|
||||
$batch = $user->getBatchUserInfo($item);
|
||||
}
|
||||
|
||||
} catch (Exception $e) {
|
||||
|
||||
// 出错啦,处理下吧
|
||||
echo $e->getMessage() . PHP_EOL;
|
||||
|
||||
}
|
||||
|
||||
|
36
Test/menu.php
Normal file
36
Test/menu.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
try {
|
||||
|
||||
// 1. 手动加载入口文件
|
||||
include "../include.php";
|
||||
|
||||
// 2. 准备公众号配置参数
|
||||
$config = include "./config.php";
|
||||
|
||||
// 3. 创建接口实例
|
||||
$menu = new \WeChat\Menu($config);
|
||||
|
||||
// 4. 获取菜单数据
|
||||
$result = $menu->get();
|
||||
|
||||
var_export($result);
|
||||
|
||||
} catch (Exception $e) {
|
||||
|
||||
// 出错啦,处理下吧
|
||||
echo $e->getMessage() . PHP_EOL;
|
||||
|
||||
}
|
40
Test/qrcode.php
Normal file
40
Test/qrcode.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
try {
|
||||
|
||||
// 1. 手动加载入口文件
|
||||
include "../include.php";
|
||||
|
||||
// 2. 准备公众号配置参数
|
||||
$config = include "./config.php";
|
||||
|
||||
// 3. 创建接口实例
|
||||
$wechat = new \WeChat\Qrcode($config);
|
||||
|
||||
// 4. 获取用户列表
|
||||
$result = $wechat->create('场景内容');
|
||||
echo var_export($result, true) . PHP_EOL;
|
||||
|
||||
// 5. 创建二维码链接
|
||||
$url = $wechat->url($result['ticket']);
|
||||
echo var_export($url, true);
|
||||
|
||||
|
||||
} catch (Exception $e) {
|
||||
|
||||
// 出错啦,处理下吧
|
||||
echo $e->getMessage() . PHP_EOL;
|
||||
|
||||
}
|
36
Test/script.php
Normal file
36
Test/script.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
try {
|
||||
|
||||
// 1. 手动加载入口文件
|
||||
include "../include.php";
|
||||
|
||||
// 2. 准备公众号配置参数
|
||||
$config = include "./config.php";
|
||||
|
||||
// 3. 创建接口实例
|
||||
$wechat = new \WeChat\Script($config);
|
||||
|
||||
// 4. 获取JSSDK网址签名配置
|
||||
$result = $wechat->getJsSign('http://a.com/test.php');
|
||||
|
||||
var_export($result);
|
||||
|
||||
} catch (Exception $e) {
|
||||
|
||||
// 出错啦,处理下吧
|
||||
echo $e->getMessage() . PHP_EOL;
|
||||
|
||||
}
|
42
Test/user.php
Normal file
42
Test/user.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
try {
|
||||
|
||||
// 1. 手动加载入口文件
|
||||
include "../include.php";
|
||||
|
||||
// 2. 准备公众号配置参数
|
||||
$config = include "./config.php";
|
||||
|
||||
// 3. 创建接口实例
|
||||
$wechat = new \WeChat\User($config);
|
||||
|
||||
// 4. 获取用户列表
|
||||
$result = $wechat->getUserList();
|
||||
|
||||
var_export($result);
|
||||
|
||||
// 5. 批量获取用户资料
|
||||
foreach (array_chunk($result['data']['openid'], 100) as $item) {
|
||||
$userList = $wechat->getBatchUserInfo($item);
|
||||
var_export($userList);
|
||||
}
|
||||
|
||||
} catch (Exception $e) {
|
||||
|
||||
// 出错啦,处理下吧
|
||||
echo $e->getMessage() . PHP_EOL;
|
||||
|
||||
}
|
@ -74,7 +74,7 @@ class WeChat
|
||||
if (!empty($this->access_token)) {
|
||||
return $this->access_token;
|
||||
}
|
||||
$cacheKey = $this->config->get('appid') . '_accesstoken';
|
||||
$cacheKey = $this->config->get('appid') . '_access_token';
|
||||
$this->access_token = Tools::getCache($cacheKey);
|
||||
if (!empty($this->access_token)) {
|
||||
return $this->access_token;
|
||||
@ -95,7 +95,7 @@ class WeChat
|
||||
public function delAccessToken()
|
||||
{
|
||||
$this->access_token = '';
|
||||
return Tools::delCache($this->config->get('appid') . '_accesstoken');
|
||||
return Tools::delCache($this->config->get('appid') . '_access_token');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -35,7 +35,7 @@ class Script extends WeChat
|
||||
public function delTicket($type = 'jsapi', $appid = null)
|
||||
{
|
||||
is_null($appid) && $appid = $this->config->get('appid');
|
||||
$cache_name = "WeChat_{$type}_ticket_{$appid}";
|
||||
$cache_name = "{$appid}_ticket_{$type}";
|
||||
Tools::delCache($cache_name);
|
||||
}
|
||||
|
||||
@ -50,7 +50,7 @@ class Script extends WeChat
|
||||
public function getTicket($type = 'jsapi', $appid = null)
|
||||
{
|
||||
is_null($appid) && $appid = $this->config->get('appid');
|
||||
$cache_name = "WeChat_{$type}_ticket_{$appid}";
|
||||
$cache_name = "{$appid}_ticket_{$type}";
|
||||
$ticket = Tools::getCache($cache_name);
|
||||
if (empty($ticket)) {
|
||||
$url = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=ACCESS_TOKEN&type={$type}";
|
||||
|
Loading…
x
Reference in New Issue
Block a user