Linked Roles Metadata erscheint nicht in Discord

Ich versuche gerade Link Roles mithilfe des Discord Tutorials zu erstellen komme aber bei der register.js Datei nicht weiter. Bei Discord wird mir nur das angezeigt: (siehe Bild).
import config from './config.js';

/**
* Register the metadata to be stored by Discord. This should be a one time action.
* Note: uses a Bot token for authentication, not a user token.
*/
async function registerMetadata() {
const url = `https://discord.com/api/v10/applications/${config.DISCORD_CLIENT_ID}/role-connections/metadata`;
// supported types: number_lt=1, number_gt=2, number_eq=3 number_neq=4, datetime_lt=5, datetime_gt=6, boolean_eq=7, boolean_neq=8
const body = [
{
key: 'lumipremium',
name: 'LUMI Premium User',
description: 'Has bought or received premium.',
type: 7,
},
{
key: 'serverowner',
name: 'Server Owner',
description: 'Is the owner of this server.',
type: 7,
},
{
key: 'bughunter',
name: 'Bug Hunter',
description: 'Helps by looking for bugs and mistakes.',
type: 7,
},
];

const response = await fetch(url, {
method: 'PUT',
body: JSON.stringify(body),
headers: {
'Content-Type': 'application/json',
Authorization: `Bot ${config.DISCORD_TOKEN}`,
},
});
if (response.ok) {
const data = await response.json();
console.log(data);
} else {
const data = await response.text();
console.log(data);
}
}

// Call the async function
registerMetadata();
import config from './config.js';

/**
* Register the metadata to be stored by Discord. This should be a one time action.
* Note: uses a Bot token for authentication, not a user token.
*/
async function registerMetadata() {
const url = `https://discord.com/api/v10/applications/${config.DISCORD_CLIENT_ID}/role-connections/metadata`;
// supported types: number_lt=1, number_gt=2, number_eq=3 number_neq=4, datetime_lt=5, datetime_gt=6, boolean_eq=7, boolean_neq=8
const body = [
{
key: 'lumipremium',
name: 'LUMI Premium User',
description: 'Has bought or received premium.',
type: 7,
},
{
key: 'serverowner',
name: 'Server Owner',
description: 'Is the owner of this server.',
type: 7,
},
{
key: 'bughunter',
name: 'Bug Hunter',
description: 'Helps by looking for bugs and mistakes.',
type: 7,
},
];

const response = await fetch(url, {
method: 'PUT',
body: JSON.stringify(body),
headers: {
'Content-Type': 'application/json',
Authorization: `Bot ${config.DISCORD_TOKEN}`,
},
});
if (response.ok) {
const data = await response.json();
console.log(data);
} else {
const data = await response.text();
console.log(data);
}
}

// Call the async function
registerMetadata();
No description
14 Replies
cuzimsono
cuzimsono9mo ago
Ich schau mal übera Wochenende drauf Hast du ein GitHub repo dazu
Fatlum
FatlumOP9mo ago
Nope Mache das ganze über Glitch. Ich kann aber eins erstellen.
Fatlum
FatlumOP9mo ago
GitHub
GitHub - LUMIDevelopment/Discord-Linked-Roles: A copy of the most i...
A copy of the most important files from my Glitch project "LUMI Linking" (without the .env file). - LUMIDevelopment/Discord-Linked-Roles
cuzimsono
cuzimsono9mo ago
Hallo @Fatlum , Ich habe mir das ganze mal angeschaut und keinen Fehler gefunden. Bitte beschreibe dein Problem ein bisschen genauer. Im Discord kann ich unter Linked Rolls auch LUMI Premium sehen Als Response bekomme ich: Access denied: User ID not in the allowed list.
Fatlum
FatlumOP9mo ago
Ich habe mehrere Keys angegeben die mir bei Discord aber nicht angezeigt werden.
No description
cuzimsono
cuzimsono9mo ago
welche keys denn
Fatlum
FatlumOP9mo ago
No description
Fatlum
FatlumOP9mo ago
(Jetzt mal davon abgesehen, dass mir der aktuellen Code bei bughunter nicht funktioniert würde.)
cuzimsono
cuzimsono9mo ago
ich sehe keinen fehler
Fatlum
FatlumOP9mo ago
Wenn ich wieder am PC bin erstelle ich ein neues Glitch Projekt und schaue obs dann funktioniert. Trotzdem danke. Wenns nicht funktioniert schau ich mal was ich mache. Habe schon 2 Ideen.
Bl4cklist🔥System
:pin: × IST DEIN PROBLEM ERLEDIGT, @Fatlum? Dein Thread Linked Roles Metadata erscheint nicht in Discord in unserem Coding-Support-System ist seit einigen Tagen inaktiv - sollte sich das Problem gelöst haben, akzeptiere bitte eine Antwort oder schließe es selbst.
Fatlum
FatlumOP9mo ago
Keine hat funktioniert.
Bl4cklist🔥System
:pin: × IST DEIN PROBLEM ERLEDIGT, @Fatlum? Dein Thread Linked Roles Metadata erscheint nicht in Discord in unserem Coding-Support-System ist seit einigen Tagen inaktiv - sollte sich das Problem gelöst haben, akzeptiere bitte eine Antwort oder schließe es selbst.
Fatlum
FatlumOP9mo ago
Ne mein Problem wurde nicht gelöst. :)

Did you find this page helpful?