Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 603 Bytes

File metadata and controls

22 lines (15 loc) · 603 Bytes
description Automatically generated file. DO NOT MODIFY
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\PersonInterest;


$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);

$requestBody = new PersonInterest();
$requestBody->setCategories(['Sports', 	]);
$requestBody->setDescription('World\'s greatest football club');
$requestBody->setDisplayName('Chelsea FC');
$requestBody->setWebUrl('https://www.chelseafc.com');

$result = $graphServiceClient->me()->profile()->interests()->post($requestBody)->wait();