2023-10-08 06:10:29 -04:00
|
|
|
# Set your default values here
|
2023-12-25 03:57:17 -05:00
|
|
|
$PROF = "" # The % replaces the # for the Activision ID (e.g. Ahrimdon%231597)
|
2023-10-08 06:10:29 -04:00
|
|
|
# You do not need numbers for PSN or XBL
|
|
|
|
# Delete $PROF when getting maps and game modes.
|
|
|
|
$COOKIE_VALUE = "ACCT_SSO_COOKIE"
|
|
|
|
|
|
|
|
$URL = "AddLinkHere"
|
|
|
|
$USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
|
|
|
|
$OUTPUT_FILE = "stats.json"
|
|
|
|
|
2023-12-25 04:29:38 -05:00
|
|
|
curl -v $URL -H "Cookie: ACT_SSO_COOKIE=$COOKIE_VALUE" -H "User-Agent: $USER_AGENT" -o $OUTPUT_FILE
|