I'm trying to make it possible for a logged in user to delete a post that he has created. Creating posts and listing them works fine. The delete service doesn't...
I create a local storage variable which I pass the _id from list response and bind it to a label-components text-param (as described in http://docs.appery.io/tutorials/build... ). It works fine and I can alert a unique id of every post that has been created.
On a delete button created in every post I first bind the selected posts listed _id to the local storage component and after this invoke the delete service.
In the delete service I bind the local storage variable holding the current posts _id to object_id, bind the sessionToken to X-Appery-Session-Token and X-Appery-Database-Id is preset to {database_id}.
When clicking any posts delete button nothing is deleted from the database... Why?