UNPKG
bootpay-rest-client
Version:
beta1 (1.0.0)
es5-beta (1.0.4)
latest (2.0.3)
next (3.0.0-beta1)
3.0.0-beta1
2.0.3
2.0.2
2.0.1
2.0.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Bootpay Rest Client Javasrcipt Library
docs.bootpay.co.kr
bootpay/server_nodejs
bootpay-rest-client
/
test
/
access_token.js
13 lines
(10 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
var
BootpayRest
=
require
(
'../lib/bootpay'
);
BootpayRest
.
setConfig
(
'59bfc738e13f337dbd6ca48a'
,
'pDc0NwlkEX3aSaHTp/PPL/i8vn5E/CqRChgyEp/gHD0='
,
'development'
); (
async
() => {
let
response =
await
BootpayRest
.
getAccessToken
();
console
.
log
(response); })()