I've been trying to create a tool for speeding up map making by making some tooling in the form of an extension in inkscape.
I'm having some issues with authenticating with the set map details API however. I was hoping someone could sanity check that provided the api token and email were correct, this should be authenticating properly per the details available at:
https://www.warzone.com/wiki/Set_map_details_APIThe map is definitely in development mode, not that it is reaching that point for it to be relevant.
Post Request:
{
"email": "DEFINITELY_MY_EMAIL",
"APIToken": "DEFINITELY_MY_TOKEN",
"mapID": 103230,
"commands": [
{
"command": "setTerritoryName",
"id": 1632,
"name": "A Test Name"
}
]
}
Response:
Code: 200
Text: {
"termsOfUse" : "Please use this API responsibly, as it can consume significant amounts of server resources if called excessively.",
"error" : "No auth found"
}
Edited 7/11/2023 13:12:46