I had a Skype bot, but Microsoft upgraded API version from V1 to V3. I'm trying send message to myself, but it doesn't work. API always returns this:
{
"statusCode": 404,
"message": "Resource not found"
}
The request URL is:
https://api.botframework.com/v3/conversations/29:16TaxVHUvlzyFDJpdJJ4NnadhxtLnqBgoNx8stAOmkJ8/activities
Headers:
Authorization: Bearer eyJ0eXAiOiJ****************(My Token)
Content-Type: application/json
Also you can find the error in Postman Picture.
What can I do to send message to a Skype user using Botframework?
Activity
object, that does not have a field calledmessage
(usetext
instead). – Thegaram