forked from kendoctor/wechat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjssdk.php
42 lines (32 loc) · 911 Bytes
/
jssdk.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
require './config.php';
use Thenbsp\Wechat\Config;
use Thenbsp\Wechat\Wechat;
/**
* 只能在微信中打开
*/
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') === false) {
exit('请在微信中打开');
}
/**
* 生成 JSSDK 配置文件
*/
$wechat = new Wechat(APPID, APPSECRET);
$apis = array('onMenuShareTimeline', 'onMenuShareAppMessage');
$configJSON = Config::getJssdk($wechat, $apis, $debug = true, $asArray = false);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>JSSDK DEMO</title>
</head>
<body ontouchstart="">
如果弹出 {"errMsg": "config:ok"} 说明配置成功!
<script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
<script>
wx.config(<?php echo $configJSON; ?>);
</script>
</body>
</html>