下面的代码是检索eml文件的调用,但我还需要检索其中的附件。我该怎么做?
jsonAttach = (StringResponse) Unirest.get(
String.format("https://graph.microsoft.com/v1.0/users/%s/messages/%s/$value",
user_email,tempMailId))
.header("Accept", "application/json")
.header("Authorization", tokenType + " " + accessToken)
.asString();
1条答案
按热度按时间zpf6vheq1#
这是文件。
我尝试了下面的api调用,它对我起了作用。