使用 Graph API 版本 2.3.2 发送带有多个附件(大小 < 4 MB)的邮件
Send Mail With Multiple Attachments (Size < 4 MB) Using Graph API Version 2.3.2
我正在尝试使用 Graph API 版本 2.3.2 发送带有多个附件的邮件(大小总和 < 4MB)。请找到以下相同的代码片段。
public static void main(String[] a){
try {
TestBase testBase = new TestBase();
Message message = getMessage();
message.hasAttachments = true;
AttachmentCollectionResponse response = new AttachmentCollectionResponse();
response.value = Arrays.asList(
getFileAttachment("/home/user/Downloads/3MBPDF.pdf"),
getFileAttachment("/home/user/Downloads/20KBPDF.pdf"));
message.attachments = new AttachmentCollectionPage(response, null);
testBase.graphClient.me().sendMail(message, true).buildRequest().post();
}catch (Exception e){
e.printStackTrace();
}
}
private static Message getMessage() {
Message message = new Message();
java.util.List<String> emails = Arrays.asList("vivektest@gmail.com");
java.util.List<Recipient> listReceipient = new ArrayList<>();
for(String email : emails) {
EmailAddress emailAddress = new EmailAddress();
emailAddress.address = email;
Recipient recipient = new Recipient();
recipient.emailAddress = emailAddress;
listReceipient.add(recipient);
}
message.body = getItemBody();
message.toRecipients = listReceipient;
message.subject = "Test Message";
message.id = "1234";
return message;
}
private static ItemBody getItemBody() {
ItemBody itemBody = new ItemBody();
itemBody.content = "<html><head></head><body> test body </body></html>";
itemBody.contentType = BodyType.HTML;
return itemBody;
}
private static FileAttachment getFileAttachment(String path) throws Exception{
FileAttachment fileAttachment = new FileAttachment();
File pdfFile = new File(path);
InputStream fileStream = new FileInputStream(pdfFile);
fileAttachment.name = pdfFile.getName();
fileAttachment.contentBytes = getByteArray(fileStream);
fileAttachment.oDataType = "#microsoft.graph.fileAttachment";
fileAttachment.size = Math.toIntExact((pdfFile.length() / 1024) / 1024);
System.out.println("FileSize::: "+fileAttachment.size);
fileAttachment.id="521";
return fileAttachment;
}
public static byte[] getByteArray(InputStream in) {
try {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
int nRead;
byte[] data = new byte[16384];
while ((nRead = in.read(data, 0, data.length)) != -1) {
buffer.write(data, 0, nRead);
}
buffer.flush();
return buffer.toByteArray();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
我仔细检查了文件的大小。
3MBPDF.pdf = 3.6 MB
20KBPDF.pdf = 20 KB
总大小不超过 4 MB,但仍返回以下错误
SEVERE: Throwable detail:
com.microsoft.graph.http.GraphServiceException: Error code: BadRequest
Error message: The maximum request length supported is 4MB.
POST https://graph.microsoft.com/v1.0/me/microsoft.graph.sendMail
SdkVersion : graph-java/v2.3.2 Authorization : [PII_REDACTED]
{"saveToSentItems":true,"message":{"body":{"conten[...]
413 : Request Entity Too Large [...]
以上代码片段是我从 msgraph-sdk-java repo 的测试用例中截取的。
请帮我发送小于 4 MB 的电子邮件。
谢谢
您的请求超过了 Graph 请求的最大 4MB 限制:
- 第一个 pdf :3.6MB
由于 base64 编码,第一个 PDF - space usage increase:2.2MB
- 第二个 pdf: 20kB
- space 第二个 PDF 的使用量增加:7kB
- JSON 负载:大概几 kB
总数远远超过 4MB 的限制。您需要为该 PDF 使用 large attachment uploads。
我正在尝试使用 Graph API 版本 2.3.2 发送带有多个附件的邮件(大小总和 < 4MB)。请找到以下相同的代码片段。
public static void main(String[] a){
try {
TestBase testBase = new TestBase();
Message message = getMessage();
message.hasAttachments = true;
AttachmentCollectionResponse response = new AttachmentCollectionResponse();
response.value = Arrays.asList(
getFileAttachment("/home/user/Downloads/3MBPDF.pdf"),
getFileAttachment("/home/user/Downloads/20KBPDF.pdf"));
message.attachments = new AttachmentCollectionPage(response, null);
testBase.graphClient.me().sendMail(message, true).buildRequest().post();
}catch (Exception e){
e.printStackTrace();
}
}
private static Message getMessage() {
Message message = new Message();
java.util.List<String> emails = Arrays.asList("vivektest@gmail.com");
java.util.List<Recipient> listReceipient = new ArrayList<>();
for(String email : emails) {
EmailAddress emailAddress = new EmailAddress();
emailAddress.address = email;
Recipient recipient = new Recipient();
recipient.emailAddress = emailAddress;
listReceipient.add(recipient);
}
message.body = getItemBody();
message.toRecipients = listReceipient;
message.subject = "Test Message";
message.id = "1234";
return message;
}
private static ItemBody getItemBody() {
ItemBody itemBody = new ItemBody();
itemBody.content = "<html><head></head><body> test body </body></html>";
itemBody.contentType = BodyType.HTML;
return itemBody;
}
private static FileAttachment getFileAttachment(String path) throws Exception{
FileAttachment fileAttachment = new FileAttachment();
File pdfFile = new File(path);
InputStream fileStream = new FileInputStream(pdfFile);
fileAttachment.name = pdfFile.getName();
fileAttachment.contentBytes = getByteArray(fileStream);
fileAttachment.oDataType = "#microsoft.graph.fileAttachment";
fileAttachment.size = Math.toIntExact((pdfFile.length() / 1024) / 1024);
System.out.println("FileSize::: "+fileAttachment.size);
fileAttachment.id="521";
return fileAttachment;
}
public static byte[] getByteArray(InputStream in) {
try {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
int nRead;
byte[] data = new byte[16384];
while ((nRead = in.read(data, 0, data.length)) != -1) {
buffer.write(data, 0, nRead);
}
buffer.flush();
return buffer.toByteArray();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
我仔细检查了文件的大小。 3MBPDF.pdf = 3.6 MB 20KBPDF.pdf = 20 KB
总大小不超过 4 MB,但仍返回以下错误
SEVERE: Throwable detail: com.microsoft.graph.http.GraphServiceException: Error code: BadRequest Error message: The maximum request length supported is 4MB.
POST https://graph.microsoft.com/v1.0/me/microsoft.graph.sendMail SdkVersion : graph-java/v2.3.2 Authorization : [PII_REDACTED] {"saveToSentItems":true,"message":{"body":{"conten[...]
413 : Request Entity Too Large [...]
以上代码片段是我从 msgraph-sdk-java repo 的测试用例中截取的。
请帮我发送小于 4 MB 的电子邮件。 谢谢
您的请求超过了 Graph 请求的最大 4MB 限制:
- 第一个 pdf :3.6MB 由于 base64 编码,第一个 PDF
- space usage increase:2.2MB
- 第二个 pdf: 20kB
- space 第二个 PDF 的使用量增加:7kB
- JSON 负载:大概几 kB
总数远远超过 4MB 的限制。您需要为该 PDF 使用 large attachment uploads。