Hi, I’m programming a webhook to fill in data in a php generated webform. So far it works. The fields “user” and “uebezeit_h” are transferred correctly via POST and I get the expected return from the webhook.
E.g. for the user “f” I get the code of the success php page back which contains something like: “…Minuten eingetragen. Bis morgen, f !”
(printet via Serial.println(responsefromWebhook) from the photon)
I have Troubles with a username that contains the letter “ü”. In the former webform (which was not HTTPS and I could POST to directly from the photon) I had to replace the ü with “%FC” to make it work.
The reply I get for the user “Bogenschütze” (does not matter if put “Bogenschütze” or “Bogensch%FCtze” is: "…Minuten eingetragen. Bis morgen, Bogensch !"
So from the where the ü should appear there the username is not further printed.
Could it be that everything is properly working but the reply from the webhook gets “processed” and the ü or %FC is filtered out? Do I have to code the “ü” differently?
Any ideas how I could further investigate this?