Я пытаюсь получить электронную почту из Outlook API, но я хочу отобразить идентификатор сообщения и другие пользовательские заголовки.
Вот код:
$headers = array(
"User-Agent: php-tutorial/1.0",
"Authorization: Bearer ".token()->access_token,
"Accept: application/json",
"client-request-id: ".makeGuid(),
"return-client-request-id: true",
"X-AnchorMailbox: ". get_user_email()
);
$top = 2;
$skip = isset($_GET["skip"]) ? intval($_GET["skip"]) : 0;
$search = array (
// Only return selected fields
"\$select" => "Subject,ReceivedDateTime,Sender,From,ToRecipients,HasAttachments,BodyPreview",
// Sort by ReceivedDateTime, newest first
"\$orderby" => "ReceivedDateTime DESC",
// Return at most n results
"\$top" => $top, "\$skip" => $skip
);
$outlookApiUrl = $_SESSION["api_url"] . "/Me/MailFolders/Inbox/Messages?" . http_build_query($search);
$response = runCurl($outlookApiUrl, null, $headers);
Что мне добавить в поиск?