I would like to save a score from an Android game to te parse.com backend. So i will create a ParseObject and save it in background:
ParseObject gameScore = new ParseObject("GameScore");
gameScore.put("score", 1337);
gameScore.put("playerName", "Sean Plott");
gameScore.saveInBackground();
Now someone can reverse engeener my Android App, get the parse client key and application id and write any highscore he wants to, for his user, the parse.com backend? Or does Parse prevents this case already somehow?
Thx