You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The web interface uses several links to perform actions.
For example, the link http://www.nomyx.net:8000/Nomyx/del-game/myGame
will delete the corresponding game.
This is wrong because a link will perform a GET, that should be referentially transparent.
For example, a mirroring tool will go through every links and delete the game, given sufficient rights.
The solution is to use adequate HTTP methods instead (DELETE, POST, PUT)
The text was updated successfully, but these errors were encountered:
The web interface uses several links to perform actions.
For example, the link http://www.nomyx.net:8000/Nomyx/del-game/myGame
will delete the corresponding game.
This is wrong because a link will perform a GET, that should be referentially transparent.
For example, a mirroring tool will go through every links and delete the game, given sufficient rights.
The solution is to use adequate HTTP methods instead (DELETE, POST, PUT)
The text was updated successfully, but these errors were encountered: