Replies: 1 comment 1 reply
-
Error looks pretty clear to me 🤔 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
url = "https://fngw-mcp-gc-livefn.ol.epicgames.com/fortnite/api/game/v2/profile/84919aee13c0483c8d614d1e1d92fe78/client/Individual"
Define the query parameters
params = {
"profileId": "athena", # Battle Royale data
"rvn": -1
}
Define the headers
headers = {
"Content-Type": "application/json",
"Authorization": "bearer "+res.json()["access_token"],
}
Make the POST request
response = requests.post(url, headers=headers, params=params)
print(response.text)
error:
"errorCode" : "errors.com.epicgames.fortnite.operation_not_found",
"errorMessage" : "Operation Individual not valid",
"messageVars" : [ "Individual" ],
"numericErrorCode" : 16035,
"originatingService" : "fortnite",
"intent" : "prod-live"
Beta Was this translation helpful? Give feedback.
All reactions