I'm trying to register a webhook for microsoft teams in order to get an update once a message is sent over some chat.
Apparently the way to do that according to Microsoft API, is to send a request with "encryptionCertificate" as following:
Now I'm trying to figure out what should go in the encryptionCertificate field but I have failed to find a clear answer in the documentation.
The only thing I figured is that the field contain a base64 encoded "Certificate", which leads me to the same question.
What is this certificate and how do I find it.
Anybody who has some experience with MS APIs or knows anything about that and can help ? Much appreciated guys
Here's also some naive tries that I have attempted and what are their results:
"encryptionCertificate": "YWJjZGVmZw==", resulted in : Certificate validation error: Cannot find the requested object,
"encryptionCertificate": "klsjdaadnkjadn", Certificate validation error: Invalid length for a Base-64 char array or string
"encryptionCertificate": null, , Certificate cannot be empty