I'm developing a Flask app to store data from my clients (Datakinder parents). I am receiving the request and decrypting the message successfully. But I always receive incorrect data On on-click-action' I expect to receive user typed data but I always receive ${form.parentname} , not the user data
Footer code is:
"type": "Footer", "label": "Siguiente", "on-click-action": { "name": "data_exchange", "payload" : { "parentname":"${form.parentname}" } }, "enabled":true }
At clicked "Siguiente" (next), endpoint receive data={'parentname': '${form.parentname}'} it must be : data={'parentname': 'Alejandro'}
Any Idea?
I sent fixed data in payload and it was received properly, but form data is not