-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
75 lines (69 loc) · 2.19 KB
/
index.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
const axios = require('axios');
// const aladinAPI = axios.create({
// baseUrl: 'http://www.aladin.co.kr/ttb/api',
// timeout: 1000,
// })
const aladin = {
item: {
/** 상품 검색 API */
search(params = {}) {
return axios.get('http://www.aladin.co.kr/ttb/api/ItemSearch.aspx', { params: params })
// .then((result) => {
// console.log(result);
// return result;
// })
// .catch((err) => {
// console.log(err);
// return err;
// })
},
/** 상품 리스트 API */
list(params = {}) {
return axios.get('http://www.aladin.co.kr/ttb/api/ItemList.aspx', { params: params })
// .then((result) => {
// console.log(result);
// return result;
// })
// .catch((err) => {
// console.log(err);
// return err;
// })
},
/** 상품 조회 API */
lookup(params = {}) {
return axios.get('http://www.aladin.co.kr/ttb/api/ItemLookUp.aspx', { params: params })
// .then((result) => {
// console.log(result);
// return result;
// })
// .catch((err) => {
// console.log(err);
// return err;
// })
},
/** 중고상품 보유 매장 검색 API */
offstorelist(params = {}) {
return axios.get('http://www.aladin.co.kr/ttb/api/ItemOffStoreList.aspx', { params: params })
// .then((result) => {
// console.log(result);
// return result;
// })
// .catch((err) => {
// console.log(err);
// return err;
// })
},
}
}
// // TEST CODE
// console.log(aladin.item.search({TTBKey: 'apikey', Query: 'query'}))
// aladin.item.search({TTBKey: 'apikey', Query: 'query', output: 'js'})
// .then((response) => {
// console.log(response)
// return response
// })
// .catch((err) => {
// console.log(err)
// return err
// })
module.exports = aladin;