Can not send large message with Office 365 REST API
问题 I'm using JavaScript to make a POST request to create a message to Office 365 with xhr (Or using Faraday gem to make POST request - Ruby on Rails).My flow is encode file to base64 and create a JSON contain all attachments(encoded) then POST to https://outlook.office.com/api/v1.0/me/sendmail . var endpointUrl = "https://outlook.office.com/api/v1.0/me/sendmail"; var xhr = new XMLHttpRequest(); xhr.open("POST", endpointUrl); xhr.setRequestHeader("Authorization", "Bearer " + token); xhr