I am working on an enpoint to recieve data from facebook.
The data looks like this
{"hub.mode":"subscribe","hub.challenge":"1820408577","hub.verify_token":"aby"}
The problem is the input iteself contains periods/dots.
Xano doesn't let us name inputs with dots
Here are the things I have tried so far and failed.
1. Making input names with dot in it , failed because xano doesnt allow it.
2. Add GET ALL Inputs and then parsing. But parsing. input.hub.mode gives us error.
3. Add GET ALL inputs , run lambda function to turn this to hub_mode. Thats also failing because it works well in run & debug but dont work when facebook actually pings.
Any way around this ?