this post is to refer similar issues about this topic, after reading all of them:
In which we have follow:
DLP enabled
Events suscribe as suggested
But ‘Meeting.chat_message_sent’ webhook are not sending to webhook app. we put also as a test mode, events subscription such as participants enter /left meeting and worked as expected, hence is not at our end problem, is more about zoom setting we guess.
We have pro paid plan
From support they pass this topic to here but im seeing a lot of similar issues, so we are at end road if no support from here.
we are using this
url = f"https://api.zoom.us/v2/chat/users/{meeting_id}/messages" and a post request.
headers[“Authorization”] = f"Bearer {new_access_token}" // store in local DB and refreshed when it endeds
data = {
“message”: message text
}
Here when i post
response = requests.post(url, headers=headers, json=data)
it showed * Response: {“code”:200,“message”:“Invalid access token, does not contain permissions:[ChatMessage:Edit].”}