-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathtaxonomyApi.js
41 lines (34 loc) · 1.29 KB
/
taxonomyApi.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
const Ebay = require('../src/index');
const { clientId, clientSecret } = require('./credentials');
let ebay = new Ebay({
clientID: clientId,
clientSecret: clientSecret,
body: {
grant_type: 'client_credentials',
scope: 'https://api.ebay.com/oauth/api_scope'
}
});
// reference https://developer.ebay.com/api-docs/commerce/taxonomy/resources/category_tree/methods/getDefaultCategoryTreeId
ebay.getAccessToken()
.then((data) => {
ebay.getDefaultCategoryTreeId('EBAY_US').then((data) => {
console.log(data);
// for EN_US { categoryTreeId: '0', categoryTreeVersion: '119' }
});
ebay.getCategoryTree(0).then((data) => {
console.log(data);
// JSON format of complete category tree.
});
ebay.getCategorySubtree(0, 11450).then((data) => {
console.log(data);
// JSON format of complete category sub tree.
});
ebay.getCategorySuggestions(0, 'iphone').then((data) => {
console.log(data);
// JSON format of category suggestions.
});
ebay.getItemAspectsForCategory(0, 67726).then((data) => {
console.log(data);
// JSON format of complete category sub tree.
});
});