Clashplayer
05/28/2023, 5:56 PMWalshy | Pages
05/28/2023, 5:57 PMClashplayer
05/28/2023, 5:57 PMClashplayer
05/28/2023, 5:58 PMhttps://cdn.discordapp.com/attachments/909458221419356210/1112439870833557565/image.png▾
Clashplayer
05/28/2023, 5:59 PMWalshy | Pages
05/28/2023, 5:59 PMcurl -I https://girard-valentin.fr/
HTTP/2 301
date: Sun, 28 May 2023 17:59:11 GMT
location: http://girard-valentin.fr/
Walshy | Pages
05/28/2023, 5:59 PMWalshy | Pages
05/28/2023, 5:59 PMClashplayer
05/28/2023, 5:59 PMClashplayer
05/28/2023, 5:59 PMClashplayer
05/28/2023, 5:59 PMWalshy | Pages
05/28/2023, 6:00 PMWalshy | Pages
05/28/2023, 6:00 PMClashplayer
05/28/2023, 6:00 PMhttps://cdn.discordapp.com/attachments/909458221419356210/1112440207522922597/image.png▾
Clashplayer
05/28/2023, 6:01 PMClashplayer
05/28/2023, 6:03 PMClashplayer
05/28/2023, 6:04 PMdave
05/28/2023, 6:12 PMMees
05/28/2023, 6:38 PMLoski
05/28/2023, 8:47 PMLoski
05/28/2023, 8:47 PMNoah Kennedy | Oxy
05/28/2023, 8:53 PMlokiwind
05/28/2023, 9:06 PMlokiwind
05/28/2023, 9:07 PMWallslide
05/29/2023, 2:43 AMCyb3r-Jok3
01/02/2024, 4:06 PMChaika
01/03/2024, 10:34 PMjs
const API_TOKEN = 'YOUR_CLOUDFLARE_API_TOKEN';
const ACCOUNT_ID = 'YOUR_ACCOUNT_ID';
const NAMESPACE_ID = 'YOUR_NAMESPACE_ID';
const KV_PAIR = {
key: 'your_key',
value: 'your_value'
};
async function writeKVPair() {
const urlEscapedKey = encodeURIComponent(KV_PAIR.key);
const response = await fetch(`https://api.cloudflare.com/client/v4/accounts/${ACCOUNT_ID}/storage/kv/namespaces/${NAMESPACE_ID}/values/${urlEscapedKey}`, {
method: 'PUT',
headers: {
'Authorization': `Bearer ${API_TOKEN}`,
'Content-Type': 'application/json'
},
body: JSON.stringify(KV_PAIR)
});
if (response.ok) {
console.log('Key-value pair written successfully!');
} else {
console.error('Failed to write key-value pair:', await response.text());
}
}
writeKVPair();
example:Erisa | Support Engineer
01/04/2024, 5:18 PMCyb3r-Jok3
01/09/2024, 2:53 AMsubdomain.domain.com
without having a record for domain.com
. What makes if you make a new proxied AAAA record for @
with a value of 100::
. Does the redirect work then?zhuangyuan_64091
01/09/2024, 9:24 AM