I try to use Telegram's getupdates URL to get updates from telegram. For example, the URL below shows the details of the last message
URL: https://api.telegram.org/bot<token>/getupdates?offset=-1
Response:
{"ok":true,"result":[{"update_id":22222222,
"channel_post":{"message_id":200,"sender_chat":{"id":-1000,"title":"Channel","username":"xxx","type":"channel"},"chat":{"id":-1000,"title":"xxx","username":"xxx","type":"channel"},"date":1111111,"text":"Hello world"}}]}
But, I want to receive only the "text" parameter as the response
Hello world
So what strings should I add to the end of the url so that I can filter the text parameter in the server response?