Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 526 Bytes

File metadata and controls

21 lines (14 loc) · 526 Bytes
description Automatically generated file. DO NOT MODIFY
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\PersonWebsite;


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

$requestBody = new PersonWebsite();
$requestBody->setCategories(['football', 	]);
$requestBody->setDisplayName('Lyn Damer');
$requestBody->setWebUrl('www.lyndamer.no');

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