In structure 'message' the key 'sender' is parsing no results, becauseroot["result"][0]["message"]["from"]["username"]; is not defined.
in Telegrambot.cpp line 50 has to be changed to
String sender = root["result"][0]["message"]["from"]["first_name"];
I will upload a Pull request.