I have a method in my Bot class that sends a message, would the message sent be something like this?
data = json.dumps({
"type": "LISTEN",
"nonce": str(nonce),
"data": {
"topics": ["channel-points-channel-v1."+str(self.channel_id)],
"auth_token": self.access_token}
})
await self.sendMessage(data)
where self.access_token is the refreshed token.