office365

Microsoft Graph, upload to sharepoint drive: The caller is not authenticated

▼魔方 西西 提交于 2019-12-13 08:51:02
问题 This work on my application hosted on localhost : "https://graph.microsoft.com:443/v1.0/sites/test.sharepoint.com,edc2dd46-cea8-4b10-a872-cd1a55ba4529,b14c0787-d4c1-4f4a-9a6c-7e010d794be9/drives/b!Rt3C7ajOEEuocs0aVbpFKYcHTLHB1EpPmmx-AQ15S-nygMtHkkWNRaaOc2GebusJ/items/01VI7PMEF6Y2GOVW7725BZO354PWSELRRZ?%24filter=folder ne null&%24select=id%2cfolder%2cname%2cparentReference%2cwebUrl" "https://graph.microsoft.com:443/v1.0/sites/test.sharepoint.com,edc2dd46-cea8-4b10-a872-cd1a55ba4529,b14c0787

Can't open office documents from SharePoint site

强颜欢笑 提交于 2019-12-13 08:35:30
问题 I'm using SharePoint 2013 and some users, I'll repeat, only SOME of them can't open office files in their client application (word, excel...). I don't know what is the problem because I can open documents from my machine but when I log in to another machine (colleague that can't open documents) I'm also unable to open documents. So, problem is in machine. I tried: removing office cache files Adding SharePoint site to Trusted zone Repairing office installation... Nothing helps. Message after a

Office 365 Unified Api (preview )

冷暖自知 提交于 2019-12-13 07:55:00
问题 I tried to implement O365 unified api(beta version). I got successfully all groups. I faced problem to get files of a particular group. It gives UnAuthorized (401) Error. when I checked in fiddler it returns an error from server in webview. If anyone knows how to fix please help me. Thanks Rajinder 回答1: Rajinder, this is a permission issue. During the preview, to get access to group files you need to select the permission "read all site collections". We will fix this for GA, where the only

Microsoft Graph API - find message by internetmessageid

这一生的挚爱 提交于 2019-12-13 07:38:25
问题 I need to find conversationId for email exchange between two user - John and Harry. In my scenario: John sends message to Harry. I have email metadata from email that John has sent, e.g. converstationId, internetMessageId, messageId (m$ graph user specific). Now I would like to reply from Harry. Unfortunately the converstionId of Harry is different then John, so I can't use it. What I would like to do is to find email message object in Harry's inbox and use his conversationId. With valid

How to login in Office 365 from VBScript and browse through sharepoint with pascal script(?)

不想你离开。 提交于 2019-12-13 07:27:17
问题 I'm packing an Access application, This is connecting with a Sharepoint site. I'm using Inno Setup (With Pascal Scripts) for create an install package. So, I found this code for do something similar to that I want, when I run the code seems work fine: Open the browser, goes to Office 365, puts information (account and password), but just in the moment when open the cmd and after few seconds, all closes without finish the process. On Error Resume Next Const PAGE_LOADED = 4 Set objIE =

How to Capture office 365 Calendar Events like cancel, move appointment

[亡魂溺海] 提交于 2019-12-13 07:18:43
问题 Is there any way to capture calendar events like Cancel or move from office365? 1. Can we use some kind of add in here which will keep on listening to these events and if user canceled some appointment it provide us those appointment details and we can pass it to our internal application. 回答1: To me, it sounds like a better solution is to use REST API events to listen to updated calendar items (or created, deleted, etc.) and let your server application handle the events rather than have an

Accessing shared calendar using the O365 REST API

早过忘川 提交于 2019-12-13 06:57:30
问题 I was reading question asked previously Office 365 shared calendars Is the options to access shared calendars of authenticated user using Oauth to authenticate available now ? Basically I am trying to implement a service using "OAuth2 client credential flow", but I want to access a calendar only if it is shared with a particular user using rest api call: https://outlook.office365.com/api/v1.0/Users/"+emailId+"/calendargroups/"+"group id of Other Calendars"+"/calendars/{calendar_id of shared

PATCH to update mailEnabled in Unified Groups not working

点点圈 提交于 2019-12-13 06:15:00
问题 It seems I'm not able to update mailEnabled value for a Unified Groups. I used : https://docs.microsoft.com/en-us/graph/api/group-update?view=graph-rest-1.0 ; in v1.0 and beta but problem is present in both The doc seems indicate that it's possible to update mailEnabled property. I get a response with a 204 but value is not updated I did my test with Graph Explorer and my final goal is to used it through Flow. Did I missed something or is there any known issue with this type of update on

eventId and icalUID of event is getting different, created between outlook calendar and google calendar

时光毁灭记忆、已成空白 提交于 2019-12-13 06:00:27
问题 Events created in outlook calendar with google calendar participants and trying to fetch events from outlook and google calendar separately, but these are getting different id's and icalUID Is there a way to find these two calendars having same events? 回答1: The mapping between iCalUID and EventId is not 1:1 (see https://developers.google.com/google-apps/calendar/v3/reference/events#iCalUID ). You can search by iCalUID through calendar API's events.list() with parameter iCalUID: https:/

Not able to use One Drive API for One Drive for Business

醉酒当歌 提交于 2019-12-13 06:00:04
问题 I am trying to provide one drive functionality in my winform application(.Net 3.5). I have successfully implemented this for one drive, but I am having trouble doing it for one drive for business. I have registered my application in azure and I am able to authenticate user, get the access token and tenant URL for logged in user. I am using the instructions provided on this [link]https://dev.onedrive.com/auth/aad_oauth.htm. When I try to access default drive it gives me unauthorized error.