-
Notifications
You must be signed in to change notification settings - Fork 144
Example calls
Caitlin Bales (MSFT) edited this page Oct 25, 2016
·
4 revisions
$graph = new Graph();
$graph
->setBaseUrl("https://graph.microsoft.com/")
->setApiVersion("beta")
->setAccessToken($_SESSION['access_token']);
$user = $graph->createRequest("get", "/me")
->addHeaders(array("Content-Type" => "application/json"))
->setReturnType("User")
->setTimeout("1000")
->execute();
$docGrabber = $graph->createCollectionRequest("GET", "/me/drive/root/children")
->setReturnType("DriveItem")
->setPageSize(2);
$docs = $docGrabber->getPage();
foreach ($docs as $doc){
$docArray[] = $doc->getName();
}
$mailBody = array( "Message" => array(
"subject" => "Test Email",
"body" => array(
"contentType" => "html",
"content" => DUMMY_EMAIL
),
"sender" => array(
"emailAddress" => array(
"name" => $name,
"address" => $email
)
),
"from" => array(
"emailAddress" => array(
"name" => $name,
"address" => $email
)
),
"toRecipients" => array(
array(
"emailAddress" => array(
"name" => $name,
"address" => $email
)
)
)
)
);
$graph->createRequest("POST", "/me/sendMail")
->attachBody($mailBody)
->execute();
$graph->createRequest("GET", "/me/drive/items/{id}/content")
->download('C:/dump.docx');
$graph->createRequest("PUT", "/me/drive/root/children/copydoc.docx/content")
->upload('C:/copydoc.docx');