Update example.js

This commit is contained in:
ai 2023-02-27 18:32:46 -05:00 committed by GitHub
parent 160e52fda0
commit e49cedcef5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,14 +4,7 @@ const { sign } = require("./X-Bogus.js");
const url = "";
const userAgent = "";
// Extract the query string from the URL
const query = url.includes("?") ? url.split("?")[1] : "";
// Generate the X-Bogus value
const xbogus = sign(query, userAgent);
// Add the X-Bogus value to the URL
const newUrl = url + "&X-Bogus=" + xbogus;
// Output the new URL to the console
console.log(newUrl);