mirror of
https://github.com/Ahrimdon/detailed-cod-tracker.git
synced 2024-11-03 16:46:44 -05:00
7 lines
350 B
PowerShell
7 lines
350 B
PowerShell
$COOKIE_VALUE = ""
|
|
|
|
$URL = "https://profile.callofduty.com/cod/userInfo/$COOKIE_VALUE"
|
|
$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 = "userInfo.json"
|
|
|
|
curl -v $URL -H "Cookie: ACT_SSO_COOKIE=$COOKIE_VALUE" -H "User-Agent: $USER_AGENT" -o $OUTPUT_FILE |