Discord Scraper avatar
Discord Scraper

Pricing

$19.00/month + usage

Go to Store
Discord Scraper

Discord Scraper

Developed by

Curious Coder

Curious Coder

Maintained by Community

Scrape discord server members and messages with attachments from any channel.

1.0 (3)

Pricing

$19.00/month + usage

25

Total users

834

Monthly users

35

Runs succeeded

71%

Issues response

81 days

Last modified

8 months ago

MR

I used API calls to run my actor and I got the following result:

Closed

marko001 opened this issue
2 years ago

{ "data": { "id": "HMJceqvNEZC4GOmXM", "actId": "AxFvOpSpBwSnI0Iyy", "userId": "SqrKcPwpHdqXpNYvy", "startedAt": "2023-11-04T23:13:14.554Z", "finishedAt": "2023-11-04T23:13:19.715Z", "status": "FAILED", "meta": { "origin": "API", "userAgent": "Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)" }, "stats": { "inputBodyLen": 110, "rebootCount": 0, "restartCount": 0, "durationMillis": 4775, "resurrectCount": 0, "runTimeSecs": 4.775, "metamorph": 0, "computeUnits": 0.0053055555555555555, "memAvgBytes": -359473.93453573814, "memMaxBytes": 81588224, "memCurrentBytes": 81588224, "cpuAvgUsage": -1.2541040497781446, "cpuMaxUsage": 85.3360801144492, "cpuCurrentUsage": 85.3360801144492, "netRxBytes": 12852, "netTxBytes": 204 }, "options": { "build": "latest", "memoryMbytes": 4096, "timeoutSecs": 3600, "diskMbytes": 8192 }, "buildId": "8jvoKrZXOBxeSZwdN", "exitCode": 1, "defaultKeyValueStoreId": "r4tmKgJScrbmL8gN1", "defaultDatasetId": "nAVuhHexW2a5GKFhK", "defaultRequestQueueId": "zdOUIpKRGIG6OudIK", "buildNumber": "1.0.28", "containerUrl": "https://2ei32gfmmzsa.runs.apify.net", "usage": { "ACTOR_COMPUTE_UNITS": 0.0053055555555555555, "DATASET_READS": 0, "DATASET_WRITES": 0, "KEY_VALUE_STORE_READS": 1, "KEY_VALUE_STORE_WRITES"... [trimmed]

curious_coder avatar

You used apify token instead of discord token

Read information page or description carefully before trying this tool:

How to get Token:

Go to discord web app, login to your account Open Developer tools (3 Dots Menu > More tools > Developer tools) Goto 'Console' Tab and paste following code and press ENTER. It will copy the token to your clipboard automatically. You should get message that says "Worked!" if the token was copied successfully.

window.webpackChunkdiscord_app.push([
[Math.random()],
{},
req => {
for (const m of Object.keys(req.c)
.map(x => req.c[x].exports)
.filter(x => x)) {
if (m.default && m.default.getToken !== undefined) {
return copy(m.default.getToken());
}
if (m.getToken !== undefined) {
return copy(m.getToken());
}
}
},
]);
console.log('%cWorked!', 'font-size: 50px');
console.log(`%cYou now have your token in the clipboard!`, 'font-size: 16px');