1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "slWorkspaceIdToken": "T00000000;xoxc-example;workspace-name",
12 "slChannelUrl": "https://app.slack.com/client/T00000000/C00000000",
13 "maxCount": 10,
14 "d": "xoxd-example",
15 "user-agent": "Mozilla/5.0 ...",
16 "txSlackUserId": "example-slack-user-id",
17 "User-Agent": "Mozilla/5.0 ...",
18 "txSmSelfProfileUrl": "example-self-profile-id",
19 "proxy": {
20 "ip": "http://proxy.example.com",
21 "port": "1080",
22 "username": "example_username",
23 "password": "example_password"
24 }
25};
26
27
28const run = await client.actor("automationagents/slack-channel-members-export").call(input);
29
30
31console.log('Results from dataset');
32console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
33const { items } = await client.dataset(run.defaultDatasetId).listItems();
34items.forEach((item) => {
35 console.dir(item);
36});
37
38