I'm developing a native iOS app which is using Microsoft's BotFramework DirectLine API. I'm having problems when trying to use the upload endpoint when the user uses the iPhone camera to take a picture.
The response I get back from the API is:
{
"error": {
"code": "ServiceError"
}
}
First I thought it was by code... Then, after testing with other images, I come to the conclusion that there must be a max file size limit when using the upload endpoint.
So my question is, is there a max upload file size limit for the upload endpoint, and if so, what is it?
If there is, does that mean I have to implement my own file upload API and then pass the URL to this uploaded file in a message which I post to the DirectLine activities endpoint?