Enter Access Token
To get your access token, follow these steps:
- Associate a Facebook account with your 8 Ball Pool account.
- Log in to 8ballpool.com with your Facebook account.
- Open the browser's developer console (usually with the F12 key).
- Paste the following code into the console and press Enter to get the token:
await fetch("https://8ballpool.com/api/v2/user", {
headers: {
authorization: localStorage.shopAccessToken,
},
referrer: "https://8ballpool.com/game",
body: null,
method: "GET",
mode: "cors",
credentials: "include"
}).then(response => response.json()).then(data => data.game_token);