-
Notifications
You must be signed in to change notification settings - Fork 327
/
Copy pathapi_qrcode.js
106 lines (100 loc) · 3.08 KB
/
api_qrcode.js
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
'use strict';
var util = require('./util');
var wrapper = util.wrapper;
var postJSON = util.postJSON;
/**
* 创建临时二维码
* 详细请看:<http://mp.weixin.qq.com/wiki/18/28fc21e7ed87bec960651f0ce873ef8a.html>
* Examples:
* ```
* api.createTmpQRCode(10000, 1800, callback);
* ```
* Callback:
*
* - `err`, 调用失败时得到的异常
* - `result`, 调用正常时得到的对象
*
* Result:
* ```
* {
* "ticket":"gQG28DoAAAAAAAAAASxodHRwOi8vd2VpeGluLnFxLmNvbS9xL0FuWC1DNmZuVEhvMVp4NDNMRnNRAAIEesLvUQMECAcAAA==",
* "expire_seconds":1800
* }
* ```
* @param {Number|String} sceneId 场景ID。字符串ID长度限制为1到64
* @param {Number} expire 过期时间,单位秒。最大不超过2592000(即30天)
* @param {Function} callback 回调函数
*/
exports.createTmpQRCode = function (sceneId, expire, callback) {
this.preRequest(this._createTmpQRCode, arguments);
};
/*!
* 创建临时二维码的未封装版本
*/
exports._createTmpQRCode = function (sceneId, expire, callback) {
var url = this.endpoint + '/cgi-bin/qrcode/create?access_token=' + this.token.accessToken;
var data = {
'expire_seconds': expire,
'action_name': 'QR_SCENE',
'action_info': {'scene': {'scene_id': sceneId}}
};
// 字符串支持
if (typeof sceneId === 'string') {
data.action_name = 'QR_STR_SCENE';
data.action_info = {'scene': {'scene_str': sceneId}};
}
this.request(url, postJSON(data), wrapper(callback));
};
/**
* 创建永久二维码
* 详细请看:<http://mp.weixin.qq.com/wiki/18/28fc21e7ed87bec960651f0ce873ef8a.html>
* Examples:
* ```
* api.createLimitQRCode(100, callback);
* ```
* Callback:
*
* - `err`, 调用失败时得到的异常
* - `result`, 调用正常时得到的对象
*
* Result:
* ```
* {
* "ticket":"gQG28DoAAAAAAAAAASxodHRwOi8vd2VpeGluLnFxLmNvbS9xL0FuWC1DNmZuVEhvMVp4NDNMRnNRAAIEesLvUQMECAcAAA=="
* }
* ```
* @param {Number|String} sceneId 场景ID。数字ID不能大于100000,字符串ID长度限制为1到64
* @param {Function} callback 回调函数
*/
exports.createLimitQRCode = function (sceneId, callback) {
this.preRequest(this._createLimitQRCode, arguments);
};
/*!
* 创建永久二维码的未封装版本
*/
exports._createLimitQRCode = function (sceneId, callback) {
var url = this.endpoint + '/cgi-bin/qrcode/create?access_token=' + this.token.accessToken;
var data = {
'action_name': 'QR_LIMIT_SCENE',
'action_info': {'scene': {'scene_id': sceneId}}
};
// 字符串
if (typeof sceneId === 'string') {
data.action_name = 'QR_LIMIT_STR_SCENE';
data.action_info.scene = {'scene_str': sceneId};
}
this.request(url, postJSON(data), wrapper(callback));
};
/**
* 生成显示二维码的链接。微信扫描后,可立即进入场景
* Examples:
* ```
* api.showQRCodeURL(ticket);
* // => https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=TICKET
* ```
* @param {String} ticket 二维码Ticket
* @return {String} 显示二维码的URL地址,通过img标签可以显示出来
*/
exports.showQRCodeURL = function (ticket) {
return this.mpPrefix + 'showqrcode?ticket=' + ticket;
};