office365

editing an occurence in a recurrence event in outlook calendar

末鹿安然 提交于 2020-01-06 06:54:29
问题 I have edited only one event in a recurrence series. While I send a get request with delta token I will get the seriesmaster content, and the edited occurence with type exception My question is how do I patch these kind of events.what is the attribute to add the exception date 回答1: In order to create an exception, you would need to modify (via PATCH) the instance you want to become the exception. If you do: GET /me/events/{event-id-of-master}/instances?startDateTime={start}&endDateTime={end}

Get SharePoint user ID and profile of an SP site with MS graph api

て烟熏妆下的殇ゞ 提交于 2020-01-06 06:50:24
问题 Is there a way to get user ID inside a SharePoint site with Microsoft Graph API ? I get a guid id with /me endpoint but in my SP site the current user has id 033. I know there is a way with SP rest api with currentspcontext. But i want to query with ms graph 回答1: I believe the Microsoft Graph currently only lets you query SharePoint sites, lists, and list items. Have you tried using the Microsoft Graph to query the User Information list? Here is a sample of the service call that you need. You

Upload document in online SharePoint site collection document library from another application outside SharePoint

ⅰ亾dé卋堺 提交于 2020-01-06 06:32:58
问题 I have developed a SharePoint App that is running on Online SharePoint 2016 site Collection. Have another Software Application with Rest API that is running on my another Online server. More this app is purely developed using HTML,Javascript/JQuery. no server side scripting. More SharePoint App strongly integrated with my Software Application (using Ajax calls for data fetching). Now the issue is, i want to upload files into SharePoint from Software Application. Note: Anonymous access is not

Invalid Named Property

你说的曾经没有我的故事 提交于 2020-01-06 05:56:48
问题 We call the microsoft exchange to set the extended property which in our case is an unique guid microsoft.exchange.webservices.data.core.exception.service.remote.ServiceResponseException: An internal server error occurred. The operation failed., Invalid named property Its been working great until now when some of our users are facing the above issue .... val uId = getUniqueId(); val emailExtendedPropDef = new ExtendedPropertyDefinition(uId,"uniqueId", MapiPropertyType.String) try { email

“No add-ins currently available.” when deploying add-in using Centralized Deployment

大憨熊 提交于 2020-01-06 04:33:28
问题 I am trying to deploy an add-in with add-in commands on the desktop version of office 365, using the Centralized Deployment method. I followed the instructions for Centralized Deployment and the addin appears as "on" in the Office 365 admin center. I used both "Everyone" and "Specific User/Group", but when I open the Word application and go to Add-ins, under "Admin Managed" I see no addins , and the message "No add-ins currently available." The addin is'nt visible neither on Word 2016 Desktop

download file from OneDrive using Microsoft.SharePoint.Client

无人久伴 提交于 2020-01-06 04:14:06
问题 I have a winforms application and I need to download files from a Sharepoint OneDrive directory. Currently, given my code below, I am able to read the file Title, but I can't find anything to help me with downloading the code using Microsoft.SharePoint.Client . string username = "appuser@abcuseraccount.com"; String pwd = "x!@ex"; ClientContext context = new ClientContext("https://abcuser.sharepoint.com/Main/financial/"); SecureString password = new SecureString(); foreach (char c in pwd

making an App Part On the main page of SharePoint 2013 using Office 365

社会主义新天地 提交于 2020-01-06 03:58:08
问题 I have made An App part using Napa in outlook365 which shows one URL of my external Application which I have made with that the current user name is there as in pic no.1{Devlopement code successfully Made} Now I have made another outlook account in which SharePoint will open through office 365 which will be of End-user.I need to give some rights in such a way when user Open his SharePoint in outlook 365 on Main page the above App part will open with his name and above URL.I need to give some

How to retrieve all contacts from Microsoft Exchange using EWS Managed API?

ぃ、小莉子 提交于 2020-01-06 02:29:05
问题 all I need to do is to retrieve all contacts from Microsoft Exchange. I did some research and the best possible option for me should be to use EWS Managed API. I am using Visual Studio and C# programming leanguage. I think I am able to connect to Office365 account, because I am able to send a message in a program to specific email. But I am not able to retrieve the contacts. If I create a contact directly in source code, the contact will be created in Office365->People aplication. But I don't

Office 365 API - Azure Active Directory bring user's thumbnail Failed

情到浓时终转凉″ 提交于 2020-01-05 12:49:45
问题 I'm using the following code from this sample : here to get the user's thumbnail of there's account on office 365 tenant into windows 8.1 project XAML/c# try { using (var dssr = await user.ThumbnailPhoto.DownloadAsync()) { var stream = dssr.Stream; var buffer = new byte[stream.Length]; await stream.ReadAsync(buffer, 0, (int) stream.Length); ProfileImage = buffer; } } catch (Exception ex) { Debug.WriteLine(ex); } However each time I try to bring user's thumbnail photo, I get the following

php-ews Access Global Address Book

浪子不回头ぞ 提交于 2020-01-05 11:12:47
问题 I'm working with the php-ews library to integrate with exchange. I was wondering if there was any way to access the global address book, I've searched the documentation and nothing comes up. I would like to access it so I can view room resources. Thanks 回答1: I don't think that the GetRooms method was ever added to php-ews. It seems they just quit development. see.. https://github.com/jamesiarmes/php-ews/issues/91 As a workaround, if your rooms exist in Active Directory, you could do an LDAP