laravel-microsoft-graph icon indicating copy to clipboard operation
laravel-microsoft-graph copied to clipboard

Laravel package for Microsoft Graph API (Microsoft365)

Results 30 laravel-microsoft-graph issues
Sort by recently updated
recently updated
newest added

Fixed the changes requested in the old pull request. Sorry for the delay

Hello, when i try to log in with microsoft everything works fine and i get redirected to my MSGRAPH_LANDING_URL= but the account is not being added to the database.

Hello, Looks very neat and tidy, although have not manage to make it operational yet. It seems like no token is generated (that is what i think). I get the...

Realy good pacakge, but in first minutes I came to a problem, returning errors on contacts email etc. Digging emails()->get() I see this: ``` $folder = $folderId == null ?...

Hello, I keep getting this error whenever I try to run: `$emails = MsGraph::emails()->get([ "\$orderby" => "displayName", "\$top" => 100, "\$skip" => 0, "\$count" => "true", ]);` The error page:...

Hello, I`m currently checking and planning to use your library but it looks like MsGraphAdmin::files() and Dcblogdev\MsGraph\AdminResources\Files are not properly working. MsGraphAdmin is missing the Files import and in Dcblogdev\MsGraph\AdminResources\Files...

In some cases, the mail value in the token is returning null. I modified the listener in my app to look at userPrincipalName and update the token in the database...

Hi, I'm trying to get the photo using: MsGraph::get('me/photo/$value'); But the response is NULL, I've checked the other online documents, such request need to have a different responseType. Any ideas?

Whenever I try to create a new contact with businessPhones or mobilePhone this error message is returned. {"error":{"code":"UnableToDeserializePostBody","message":"were unable to deserialize "}} ``` $data = [ 'displayName' => $crm_cascontact->surname.' '.$crm_cascontact->givenName,...

Had issues with getting admin tokens and sending mail and noted a few mistakes during debugging. - getAccessToken() returned a redirection to the oath login page instead of getting a...