the code i used
cookie = "_|WARNING:-DO-NOT-SHARE-THIS.--Sharing-this-will-allow-someone-to-log-in-as-you-and-to-steal-your-ROBUX-and-items.|_"
auth_response = requests.post("https://auth.roblox.com/v1/logout", headers={"cookie": f".ROBLOSECURITY={cookie}"})
if auth_response.status_code == 403:
if "x-csrf-token" in auth_response.headers:
token = auth_response.headers["x-csrf-token"]
headers = {
"cookie": f".ROBLOSECURITY={cookie}",
"x-csrf-token": token
}
data = {
"isForSale": True,
"price": 140
}
message_response = requests.post(
"https://apis.roblox.com/game-passes/v1/game-passes/221047634/details",
headers=headers,
json=data
)
print(message_response.status_code, message_response.text)
in console it returns "200" but my gamepass remains un-updated, can someone help me out