Is it normal to get logged out after using a get request?

After executing this code which I wrote in Python to get a list of resellers of a limited. I get logged out of my Roblox account. Is this normal?

import os
cookie = os.environ['.ROBLOSECURITY']
import requests

itemID = 175134660
while True:
  res = requests.get(
      url=f"https://economy.roblox.com/v1/assets/{itemID}/resellers",
      cookies={
          ".ROBLOSECURITY": cookie
      }
  )
  html_page = res.content
  html_page=html_page.decode("utf-8")
  print(html_page)

I think this has something to do with the update where if the use of your cookie is not in the same region/country as where the cookie was made, it kicks you out. Not sure tho. Do you use a vpn/proxies by any chance?

1 Like

oh also I see you have a while true statement, maybe you got ratelimited? As you do a big ton of requests because I don’t see any type of waiting in this code.

This happens to me too, probably a security measure like @thecashbay said

1 Like

No, I don’t have any VPNs or proxies enabled

I’ve tried it with two second delay but it still logs me out of my account and doesn’t work

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.