UNPKG
wechat-lite
Version:
latest (3.2.1)
3.2.1
3.2.0
3.1.13
3.1.12
3.1.11
3.1.10
3.1.9
3.1.8
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.0.3
3.0.1
3.0.0
2.2.1
2.2.0
2.1.3
2.1.2
2.1.1
2.1.0
2.0.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
wechat js api
github.com/song940/wechat-lite
song940/wechat-lite
wechat-lite
/
lib
/
ticket.js
10 lines
(7 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
{ getJSON,
API_CORE
} =
require
(
"./core"
);
const
ticket
= (
token
) => {
return
getJSON
(
`
${API_CORE}
/ticket/getticket?access_token=
${token}
&type=jsapi`
); };
module
.
exports
= { ticket, };