1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "mode": "search",
12 "locations": [
13 "서울"
14 ],
15 "categoryGroup": "all",
16 "urls": [
17 "https://nol.yanolja.com/stay/domestic/123456"
18 ],
19 "fetchDetails": true,
20 "maxItems": 20,
21 "incrementalMode": false,
22 "emitUnchanged": false,
23 "emitExpired": false,
24 "proxy": {
25 "useApifyProxy": true,
26 "apifyProxyGroups": [
27 "RESIDENTIAL"
28 ],
29 "apifyProxyCountry": "KR"
30 }
31};
32
33
34const run = await client.actor("abotapi/yanolja-com-scraper").call(input);
35
36
37console.log('Results from dataset');
38console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
39const { items } = await client.dataset(run.defaultDatasetId).listItems();
40items.forEach((item) => {
41 console.dir(item);
42});
43
44