Skip to content

Instantly share code, notes, and snippets.

@eyecatchup
Last active April 5, 2025 21:59
Show Gist options
  • Save eyecatchup/2d700122e24154fdc985b7071ec7764a to your computer and use it in GitHub Desktop.
Save eyecatchup/2d700122e24154fdc985b7071ec7764a to your computer and use it in GitHub Desktop.
Calculate SAPISIDHASH
// Generates the SAPISIDHASH token Google uses in the Authorization header of some API requests
async function getSApiSidHash(SAPISID, origin) {
function sha1(str) {
return window.crypto.subtle.digest("SHA-1", new TextEncoder("utf-8").encode(str)).then(buf => {
return Array.prototype.map.call(new Uint8Array(buf), x=>(('00'+x.toString(16)).slice(-2))).join('');
});
}
const TIMESTAMP_MS = Date.now();
const digest = await sha1(`${TIMESTAMP_MS} ${SAPISID} ${origin}`);
return `${TIMESTAMP_MS}_${digest}`;
}
const SAPISIDHASH = await getSApiSidHash(document.cookie.split('SAPISID=')[1].split('; ')[0], 'https://photos.google.com');
console.log(SAPISIDHASH);
@eusouoviana
Copy link

wtf is this?

@eyecatchup
Copy link
Author

@eusouoviana An internal Google hashing algorithm

@Jervi-sir
Copy link

what about the youtube studio one, i noticed the all end with _u

@quyeticb
Copy link

It seems like it's no longer working now. Have you tried it?

@johan456789
Copy link

@Jervi-sir Not sure about youtube studio but this works for me on youtube.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment