Hey. I am currently trying to send a post request to Roblox to follow my user.
My code till now is:
import requests
# Define the URL
url = "https://friends.roblox.com/v1/users/4176218568/follow"
# Define the cookies
cookies = {"Here is my cookie, i aint gonna share"}
# Send the POST request
response = requests.post(url, cookies=cookies)
# Print the response
print(response.status_code)
print(response.text)
So far so good but the responses are:
403
{"code":0,"message":"Token Validation Failed"}
But when I manually follow the user I see this request in the network tab so idk why it doesnt work. Thanks
