-
Notifications
You must be signed in to change notification settings - Fork 22
/
user-info.js
executable file
·46 lines (37 loc) · 1.11 KB
/
user-info.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
#!/usr/bin/env node
/**
* to run user-info applet from the project root folder type in your console:
* > node bin/user-info <client_id> <client_secret> <email> <password>
* <client_id>, <client_secret>, <email>, <password> - are required params
* options:
* --dev - request will be sent to developer sandbox API
*/
'use strict';
const args = process.argv.slice(2);
const flags = args.filter(arg => /^--/.test(arg));
const params = args.filter(arg => !/^--/.test(arg));
const [
clientId,
clientSecret,
username,
password,
] = params;
const dev = flags.includes('--dev');
const { promisify } = require('../utils');
const api = require('../lib')({
credentials: Buffer.from(`${clientId}:${clientSecret}`).toString('base64'),
production: !dev,
});
const {
oauth2: { requestToken: getAccessToken },
user: { retrieve: getUserInfo },
} = api;
const getAccessToken$ = promisify(getAccessToken);
const getUserInfo$ = promisify(getUserInfo);
getAccessToken$({
username,
password,
})
.then(({ access_token: token }) => getUserInfo$({ token }))
.then(res => console.log(res))
.catch(err => console.error(err));