microsoft-graph-api

Microsoft Graph API Creating Event no longer returning conferenceId

好久不见. 提交于 2020-12-06 12:45:00
问题 We have been using the Graph API to create meetings in PHP using the Model\Event::class. It's been fine for many months. As part of the event packet we include onlineMeeting => true. This would return (as per the Graph API documentation) an onlineMeeting json section in the returned json response properties. This would include (as per the documentation here https://docs.microsoft.com/en-us/graph/api/resources/onlinemeetinginfo?view=graph-rest-1.0) various useful bits of information like the

MailboxNotEnabledForRESTAPI - Microsoft Graph API integration with HMA Enabled on-premise server

∥☆過路亽.° 提交于 2020-12-06 11:57:20
问题 We had integrated our application with Microsoft Graph API enabling user to access their outlook through our application. The integration works fine with office365 users but having intermittent issues with users in on-premise server. Initially after enabling HMA in on-premise server the integration started working, but for past two weeks we are facing issue with the integration and receiving error message as below. HTTP error: 404 Error code: MailboxNotEnabledForRESTAPI or

MailboxNotEnabledForRESTAPI - Microsoft Graph API integration with HMA Enabled on-premise server

可紊 提交于 2020-12-06 11:56:07
问题 We had integrated our application with Microsoft Graph API enabling user to access their outlook through our application. The integration works fine with office365 users but having intermittent issues with users in on-premise server. Initially after enabling HMA in on-premise server the integration started working, but for past two weeks we are facing issue with the integration and receiving error message as below. HTTP error: 404 Error code: MailboxNotEnabledForRESTAPI or

Graph API calls to OnPremise Exchange only works in Playground

此生再无相见时 提交于 2020-12-05 11:35:10
问题 Our setup is an on-premise Exchange Server which is accessible over the graph api. https://docs.microsoft.com/en-us/graph/hybrid-rest-support We run in the issue, that our token is only "partial" working. And a token created by "Graph-Playground" is fully working. But we can't find any difference. When I use Graph-Playground or use the token generated by Graph-Playground => all requests are working When I create a token (over my app registration) => only some requests are working The token

Graph API calls to OnPremise Exchange only works in Playground

荒凉一梦 提交于 2020-12-05 11:34:09
问题 Our setup is an on-premise Exchange Server which is accessible over the graph api. https://docs.microsoft.com/en-us/graph/hybrid-rest-support We run in the issue, that our token is only "partial" working. And a token created by "Graph-Playground" is fully working. But we can't find any difference. When I use Graph-Playground or use the token generated by Graph-Playground => all requests are working When I create a token (over my app registration) => only some requests are working The token

I am having a problem attaching a large file in Graph API

天大地大妈咪最大 提交于 2020-12-01 13:31:18
问题 I am attempting to attach large files using the following steps, following these guidelines: https://docs.microsoft.com/en-us/graph/outlook-large-attachments?tabs=http Here are my steps: Create the message - https://graph.microsoft.com/v1.0/users/me/messages - this returns a message ID. To my knowledge, this is the only way to generate a messageId create an upload session - https://graph.microsoft.com/beta/users/{me}/messages/{messageId}/attachments/createUploadSession - this provides a link

Email with Multiple Attachments using Graph API (>4 MB)

杀马特。学长 韩版系。学妹 提交于 2020-11-29 19:10:03
问题 I'm using Microsoft-Graph API version 1.4 and trying to send mail with multiple attachments (with size greater then 4MB) using following code.. val address = EmailAddress() address.address = "vivek@domain.com" val recipient = Recipient() recipient.emailAddress = address val message = MyMessage() message.subject = "Test E-Mail" message.body = getItemBody() message.toRecipients = Collections.singletonList(recipient) val att = FileAttachment() att.contentBytes = File("/home/user/file.pdf")

Email with Multiple Attachments using Graph API (>4 MB)

大憨熊 提交于 2020-11-29 19:04:49
问题 I'm using Microsoft-Graph API version 1.4 and trying to send mail with multiple attachments (with size greater then 4MB) using following code.. val address = EmailAddress() address.address = "vivek@domain.com" val recipient = Recipient() recipient.emailAddress = address val message = MyMessage() message.subject = "Test E-Mail" message.body = getItemBody() message.toRecipients = Collections.singletonList(recipient) val att = FileAttachment() att.contentBytes = File("/home/user/file.pdf")

Email with Multiple Attachments using Graph API (>4 MB)

只谈情不闲聊 提交于 2020-11-29 18:59:15
问题 I'm using Microsoft-Graph API version 1.4 and trying to send mail with multiple attachments (with size greater then 4MB) using following code.. val address = EmailAddress() address.address = "vivek@domain.com" val recipient = Recipient() recipient.emailAddress = address val message = MyMessage() message.subject = "Test E-Mail" message.body = getItemBody() message.toRecipients = Collections.singletonList(recipient) val att = FileAttachment() att.contentBytes = File("/home/user/file.pdf")