mirror of
https://github.com/vitalygashkov/crextractor.git
synced 2026-07-15 17:40:03 +02:00
11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
export function extractSecrets(): Promise<{
|
|
// Crunchyroll app ID
|
|
id: string;
|
|
// Crunchyroll app secret
|
|
secret: string;
|
|
// Base64 encoded `id:secret` string
|
|
encoded: string;
|
|
// HTTP header with Basic Authorization to access Crunchyroll mobile APIs
|
|
authorization: string;
|
|
}>;
|