我正在使用 office365 应用程序并引用自https://msdn.microsoft.com/en-us/office/office365/api/mail-rest-operations#Createandsendmessages和https://dev.outlook.com/RestGettingStarted/Tutorial/ php创建函数:
function reply_to(){
$comment =array("Comment"=> $_POST['comment']);
$url="https://outlook.office365.com/api/v1.0/me/messages/'".$_POST['messeg_id']."'/reply";
$data=OutlookService::makeApiCall($_SESSION['access_token'],'POST',$url,$comment);
print_r($data);
}
并且总是得到同样的错误
数组( [errorNumber] => 400 [error] => 请求返回 HTTP 错误 400 )。
我不知道我做错了什么,我检查了很多次。