本文介绍了Microsoft Graph 中的回复和转发有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Microsoft Graph 的回复forward API.我试图了解它们的区别.

I am using Microsoft Graph's reply and forward APIs. I am trying to understand their difference.

起初,我认为如果我使用 forward,conversationId 可能会改变.

At first, I thought the conversationId might change if I use forward.

事实证明 conversationId 不会改变.那么这两个API有什么区别吗?谢谢

It turns out the conversationId won't change. So is there any difference between these two APIs? Thanks

POST /me/messages/{id}/reply
POST /me/messages/{id}/forward

推荐答案

一个回复,一个转发.这些是根本不同的操作,即使在这两种情况下都保留了 conversationId.就在我的头顶:

One replies, one forwards. These are fundamentally different operations, even if in both cases the conversationId is preserved. Just off the top of my head:

  • 回复:收件人"和抄送"行上的收件人被保留,主题前缀为RE:"(或本地化的等价物),附件不会被保留.
  • 转发:不保留任何收件人,主题以FW:"(或本地化的等效项)为前缀,附件被保留.

这篇关于Microsoft Graph 中的回复和转发有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 21:21