问题
I am using Microsoft Graph's reply and forward APIs. I am trying to understand their difference.
At first, I thought the conversationId
might change if I use forward.
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
回答1:
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:
- Reply: the recipients on the To and CC lines are preserved, the subject is prefixed with "RE:" (or a localized equivalent), attachments are not carried over.
- Forward: No recipients are preserved, the subject is prefixed with "FW:" (or a localized equivalent), attachments are carried over.
来源:https://stackoverflow.com/questions/49953865/what-is-the-difference-between-reply-and-forward-in-microsoft-graph