-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathget_user_boards.js
executable file
·55 lines (49 loc) · 2.14 KB
/
get_user_boards.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
#!/usr/bin/env node
import { ArgumentParser } from 'argparse';
import { AccessToken } from '../src/access_token.js';
import { ApiConfig } from '../src/api_config.js';
import { Board } from '../src/board.js';
import { common_arguments } from '../src/arguments.js';
import { Scope } from '../src/oauth_scope.js';
import { User } from '../src/user.js';
/**
* This script prints summary information for each of the boards in a
* User's profile. It demonstrates how to get paginated information from
* the Pinterest API.
*/
async function main(argv) {
const parser = new ArgumentParser({
description: "Get A User's Boards"
});
parser.add_argument('-ps', '--page-size',
{ help: 'Boards per page', default: 25, type: 'int' });
parser.add_argument('--include-empty',
{ help: 'Include empty boards?', dest: 'include_empty', action: 'store_true' });
parser.add_argument('--no-include-empty',
{ dest: 'include_empty', default: true, action: 'store_false' });
parser.add_argument('--include-archived',
{ help: 'Include archived boards?', dest: 'include_archived', action: 'store_true' });
parser.add_argument('--no-include-archived',
{ dest: 'include_archived', default: false, action: 'store_false' });
common_arguments(parser);
const args = parser.parse_args(argv);
// get configuration from defaults and/or the environment
const api_config = new ApiConfig({ verbosity: args.log_level });
// Note: It's possible to use the same API configuration with
// multiple access tokens, so these objects are kept separate.
const access_token = new AccessToken(api_config, { name: args.access_token });
await access_token.fetch({ scopes: [Scope.READ_USERS, Scope.READ_BOARDS] });
// get information about all of the boards in the user's profile
const user = new User(api_config, access_token);
const board_iterator = await user.get_boards({
query_parameters: {
page_size: args.page_size,
include_empty: args.include_empty,
include_archived: args.include_archived
}
});
await user.print_multiple(args.page_size, 'board', Board, board_iterator);
}
if (!process.env.TEST_ENV) {
main(process.argv.slice(2));
}