I am trying to make my own bot right now. Now I am facing a small problem... When receiving messages via API the JSON looks like this:
{
"update_id": 297528782,
"message": {
"message_id": 2,
"from": {
"id": 148361373,
"is_bot": false,
"first_name": "yz",
"username": "yz"
},
"chat": {
"id": -403635451,
"title": "bottest",
"type": "group",
"all_members_are_administrators": false
},
"date": 1583942557,
"left_chat_participant": {
"id": 1138406331,
"is_bot": true,
"first_name": "xxxxxxxxxbot",
"username": "xxxxxxxxxbot"
},
"left_chat_member": {
"id": 1138406331,
"is_bot": true,
"first_name": "xxxxxxxxxbot",
"username": "xxxxxxxxxbot"
}
}
}
How can I transform something like ("date":
1583942557
)
to something like dd-MM-YYYThh:mm?
Thanks in advance