skip to Main Content

Azure – AAD Access token per API

Current Behavior - From our service-A, we are calling service-B. We are currently using client_credentials as a way to generate access_token for service-B(as shown below). Service-B is validating token generated at their end and everything is working fine. Expected behavior…

VIEW QUESTION

Microsoft Graph API Send Mail Response Is Empty – Php

I am trying to send an email using modern smtp with Office365 Graph API. Emails are sending fine, with attachments however, I cannot seem to fullfill the response I'm expecting from the endpoint. $this->graphSdk->createRequest("POST", "/users/" . $this->config['from_email'] . "/sendmail") ->attachBody($this->getMessageBody($message))…

VIEW QUESTION

Azure – assign license with MsGraph

I need to assign license using MsGraph-if you are here, you know it will be obsolete by the end of March. So far, I found this. $AddLicense = @( @{SkuID = $license DisabledPlans = $DisabledPlans}) Set-MgUserLicense -UserID $upn -AddLicenses $AddLicense…

VIEW QUESTION
Back To Top
Search