office365

XML Schema Violation Office Add-in manifests

无人久伴 提交于 2019-12-06 13:48:46
问题 I have an outlook add in manifest file. I can upload it into my addin through Outlook online successfully. However, when I upload to https://sellerdashboard.microsoft.com I get this error message: XML Schema Violation: Your manifest does not adhere to the current set of XML schema definitions for Office Add-in manifests. (link: https://aka.ms/add-in-manifest-schema-violation) - Details: The element 'WebApplicationInfo' in namespace 'http://schemas.microsoft.com/office/mailappversionoverrides

Fetch messages filtered by conversationId via Office365 API

Deadly 提交于 2019-12-06 12:38:53
问题 I'm having some trouble figuring out how to use the office365 api to fetch messages given a conversationId . Let's say my conversationId is AAQkADlkOGJmMTFmLTc2NjMtMKL3My04ZDhkLTVmZWNjMzA1ODY0NAAQAB11Xh2opSpBiXifMEJjhow= I'll make a request like https://outlook.office.com/api/v1.0/me/Messages?$filter=ConversationId%20eq%20AAQkADlkOGJmMTFmLTc2NjMtMKL3My04ZDhkLTVmZWNjMzA1ODY0NAAQAB11Xh2opSpBiXifMEJjhow= This results in a 400 response like this: { "error": { "code": "RequestBroker-ParseUri",

Icons for Outlook addin not updating

不羁岁月 提交于 2019-12-06 11:58:45
问题 I have an icon for a button in my Outlook add-in. For example, https:/xyz.com/img1 pointing to img1 Now if I update the image after deploying the add-in, the updated image is not loaded in the ribbon. after update: https:/xyz.com/img1 pointing to img2. Ideally, img2 should be visible in the ribbon, right? Is there any cache that needs to be deleted? I have tried restarting Outlook client and desktop, but no change. If I enable the add-in to a new user now, the new image is displayed as an

Unable to create/rename files with special character “(” (Open Parenthesis)

。_饼干妹妹 提交于 2019-12-06 11:36:05
问题 I have an issue while creating / renaming files in OneDrive for Business(Admin) through rest client(PostMan). Can you guys point me where i can find the tutorial or any documentation that states any specific requirements / restrictions for creating / renaming a file. Please find the below details of the request. URL : https://graph.microsoft.com/v1.0/cloudfuze.co/users/{user_id}/drive/items/{parent_id}/children/{file_name}/content Ex File Name : (test).jpg Headers : { Authorization:Bearer

Is this a Microsoft or an Oracle Problem?

一个人想着一个人 提交于 2019-12-06 09:58:59
In my original thread here: How can I fix ORA: 01013 (user requested cancel...) when trying to link Oracle tables in MS Access? I describe an issue attempting to link Oracle tables into a Microsoft Access (office 365) database. The process timed out after entry of a UID and password. As I researched the problem, I was able to determine that the ODBC drivers and DSN work for ADO, Toad, and Microsoft Power BI (when using a specific query against an Oracle table). I was never able to log entries in the Oracle V$SQL table from either Access or Excel to further troubleshoot the problem. However,

Change value of a table in content control

試著忘記壹切 提交于 2019-12-06 08:31:00
I created a Word add-in and I insert a table in Word 2016 (version 16.0.7341.2029) using the Word API 1.3 like this: var value = [[3,4],[5,6]]; Word.run(function (ctx) { var table = ctx.document.body.insertTable(value.length, value[0].length, Word.InsertLocation.end, value); var myContentControl = table.insertContentControl(); myContentControl.tag = 'MyTable1'; myContentControl.title = 'This is a table'; return ctx.sync() .then(function () { console.log('Table created'); }).catch(function (err) { console.log(err); }); }); I see the table in a content control with the proper values. When I

Insert table inside content control with Office.js

陌路散爱 提交于 2019-12-06 08:12:01
i'm trying to insert a table inside the content control. Here is my code: function insertTable() { Word.run(function (context) { var range = context.document.getSelection(); var cc = range.insertContentControl(); cc.title = "My Table"; var values = [["Apple", "red", "round"], ["Banana", "yellow", "long"], ["Pear", "green", "oblong"]]; context.load(cc); return context.sync().then(function () { var table = cc.insertTable(3, 3, 'Start', values); }) // Synchronize the document state by executing the queued commands, // and return a promise to indicate task completion. .then(context.sync); })

getCallbackTokenAsync returns “An internal error has occurred”

限于喜欢 提交于 2019-12-06 08:09:29
I have created an Outlook add-in, which uses mailbox.getCallbackTokenAsync() function to authenticate with EWS API. For the majority of the add-in users, this works without issues. However, for some users, calling this function results in the "An internal error has occurred" error. This seems to occur just once, and subsequent calls to this function return token successfully. Users that experience issues use various Outlook versions - Outlook 16.0.6965.2115, Outlook 16.0.7571.2109, Outlook Mac 15.29, ... Do you have any idea what is the cause of this error? 来源: https://stackoverflow.com

How to set the UserInfo of a ADAL Token

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-06 07:56:27
So im building a ASP.NET web app that uses ADAL with Office 365 but I would like to have ADAL save the tokens so that the user will not have to log into Office each Session. I've looked all over the place and have figured out how to implement a token cache but I still don't know how to create the token with the current Users info so that I can retrieve it. Im sure it's as simple as adding a argument to one of the AcquireToken methods but I cant find out how. For referance this is what I have so far in terms of ADAL Uri authUri = await authContext.GetAuthorizationRequestUrlAsync(scopes,null,

Contacts are getting created only in root folder

纵然是瞬间 提交于 2019-12-06 07:10:44
Even though I specify the subfolder ID where a new contact should be created using Office65 REST API, the contacts are getting created in Contacts root folder. This is the url that is built by my application for creating contacts. https://outlook.office365.com/api/v1.0/me/contactfolders/AAMkADhhOTM3ZWE0LTRjYTctNDMyZi1iMWQ3LTY3ODEyN2M2Yjk3NgAuAAAAAAB1SQvREkmDQ73BRgC_7x0FAQAv44kp00W2SLeK4uBEf9wSAAAgq8EwAAA=/contacts I see this too. I'll file a bug and get our developers to look at it. Thanks for reporting! UPDATE: This should work now. 来源: https://stackoverflow.com/questions/28238849/contacts