office365

Is there a way to make my add-in run and show in people level not mail item

耗尽温柔 提交于 2019-12-24 18:51:40
问题 I want to make add-in that show button in contact form to show user email and phone number in task pane , is that available with current web add-in api ? And how to make it because i can't found any demo or document for that 回答1: No, the current web add-in specification supports only two item types in Outlook Message Appointment Using the web add-in infrastructure for Outlook, it is not possible to show a button in contact form. 来源: https://stackoverflow.com/questions/51082192/is-there-a-way

Uploading large files to Sharepoint 365

馋奶兔 提交于 2019-12-24 18:25:15
问题 I'm using the CSOM to upload files to a Sharepoint 365 site. I've logged in succesfully with Claims based authentication using methods found here "http://www.wictorwilen.se/Post/How-to-do-active-authentication-to-Office-365-and-SharePoint-Online.aspx" But using SaveBinaryDirect on the ClientContext fails with a 405 due to cookies being attached to request too late. Another method of using CSOM to upload files is similar to below. But with SP 365, this limits the file size to about 3 meg. var

Office 365 API request timeout

前提是你 提交于 2019-12-24 17:29:44
问题 I am developing a 3rd party application to integrate with Office 365 and I have a question about request timeout. Timeout I set is 25 seconds which is more than enough from my perspective, however my requests end up with timeout frequently. Here is log of what I am doing: I sent 2 GET requests 1 by one to following url: 'https://outlook.office365.com/api/v1.0/me/calendars' 1) 'client-request-id': 'xxxxxxxxxxxxxxxxx' Error: ETIMEDOUT 2) 'client-request-id': 'xxxxxxxxxxxxxxxxx' Completed

Outlook REST API - Get logged in user's email address

为君一笑 提交于 2019-12-24 16:42:59
问题 How do I get the logged in user's email address using Outlook REST API? I'm using com.microsoft.services.outlook.fetchers.OutlookClient (https://github.com/OfficeDev/Office-365-SDK-for-Java/blob/master/sdk/outlook-services/src/main/java/com/microsoft/services/outlook/fetchers/OutlookClient.java). Is extracting it from the JWT access token the only way (see here and here) ? (Latest changes to tokens here) Thanks UPDATE: Following this approach: Get the Inbox parent folder ID: mClient.getMe()

No outlook webhook notification for events in secondary calendars

假如想象 提交于 2019-12-24 16:09:42
问题 I have successfully subscribed to changes of the events resource with a request body of: { "@odata.type": "#Microsoft.OutlookServices.PushSubscription", "Resource": "me/events", "NotificationURL": "...", "ChangeType": "Created, Updated, Deleted" } Although I get the expected webhook notification when modifying an event in the user's default calendar, I don't get any webhook notifications when modifying events in other calendars of the same user. Am I doing something wrong or is it a bug or

Difficulties debugging add-in

不羁岁月 提交于 2019-12-24 14:08:38
问题 I'm using Atom as an editor (I really dislike Visual Studio) to develop an Excel add-in. The project was generated using yo office , and I followed the contents of this page to get started (I'm using React). I added a console.log to check the contents of a variable but couldn't find the output, so I searched and found this question, with the suggestion to attach a VS debugger. MS has some documentation on how to do that here. However, after doing that, not only do I not see the contents of

Create Draft mail in Office 365 via Web API

与世无争的帅哥 提交于 2019-12-24 13:26:17
问题 I have a Web API backend with EF and use AzureAD to authenticate my (office365)users of the web application that is written in AngularJS. Now I want to create a draft mail in my Web API but I don't know where to start. Can I just call the Office 365 mail API in my Web API? POST https://outlook.office365.com/api/{version}/me/sendmail But how do I pass the authentication token with it? Here is the Auth config that I use now and it works for other data requests. public static class Auth {

PowerShell script to Automate AAD app and assigning delegated Permissions

本小妞迷上赌 提交于 2019-12-24 10:12:16
问题 Continue to my last question how to automate azure AD app creation I could manage to automate AAD creation using PowerShell script, but wanted to go one step ahead and assign permissions to application like MS graph/ Azure AD, office 365 etc . I don't find any help on MS. Can anybody give some hint on it. 回答1: Permissions to Other Applications is stored on the Application Object under the property requiredResourceAccess . Here is an example of that property from an app I created. I pulled

Cancelled mail ics showing “not supported”

柔情痞子 提交于 2019-12-24 09:59:41
问题 Canceled invitation emails send to outlook has an attachment "not supported". This is the ics i'm using for cancel email invitation. Could someone help me to understand what i'm missing here. PS: Gmail is able to parse this ics and it is removing the event from calendar. BEGIN:VCALENDAR VERSION:2.0 METHOD:CANCEL PRODID:-//PYVOBJECT//NONSGML Version 1//EN BEGIN:VEVENT UID:fwefgWuxV6DNc1@QnzyZWc38uhPXw2 DTSTART:20190709T084500Z DTEND:20190709T094500Z ATTENDEE;CUTYPE=INDIVIDUAL;ROLE=REQ

How to register an Office 365 Application in Azure AD automatically using powershell?

自闭症网瘾萝莉.ら 提交于 2019-12-24 09:15:34
问题 For easy deployment, I want to automate app registration process office 365 Azure AD. Manuel process is complex and time consuming to apply certificates and granting certain permissions on calendar or active directory or Graph. I want to simplify the whole registration and deployment process so that process goes smoothly. manual process link click here 回答1: I got the following command to new Microsoft online ServicePrincipal C:\PS>$cer = New-Object System.Security.Cryptography