The title might not make sense but my problem is that I have set something as the body in the request but when I print it out it doesn't print what the actual body was.
Here is my code:
data = {
"offers": [
{
"userId": 435771547,
"userAssetIds": [
2409285794
],
"robux": 0
},
{
"userId": userId,
"userAssetIds": [
1380767576
],
"robux": 0
}
]
}
requested = requests.post("https://trades.roblox.com/v1/trades/send", data = data, cookies = cookie, headers = {
"Content-Type": "application/json",
"X-CSRF-TOKEN": token
})
print(requested.request.body)