Questions tagged [office365-apps]

Office 365 add-ins lets you create consumer and enterprise experiences running within supported Office 2013 applications by using the power of the web and standard web technologies like HTML5, XML, CSS3, JavaScript, and REST APIs. An app for Office is basically a webpage that is hosted inside an Office client application. Use this tag when referring to Office 365 add-ins only.

Office 365 add-ins lets you create consumer and enterprise experiences running within supported Office 2013 applications by using the power of the web and standard web technologies like HTML5, XML, CSS3, and JavaScript.

An Office add-in is basically a webpage that is hosted inside an Office client application. You can use apps to extend the functionality of a document, email message, meeting request, or appointment. Add-ins can run in multiple environments and clients, including rich Office desktop clients, Office Web Apps, mobile browsers, and also on-premises and in the cloud.

This document provides a quick overview of the Add-ins for Office platform, how an app works inside of an Office application, and how you publish an add-in to the Office Store or to an onsite catalog for consumers to use.

There are several types of add-ins available:

Supported applications:

   Application      | Task pane | Content | Mail
  _______________________________________________
   Excel 2013       |     •     |    •    |
   Excel Web App    |     •     |    •    |
   Word 2013        |     •     |         |
   Outlook 2013     |           |         |   •
   Outlook Web App  |           |         |   •
   PowerPoint 2013  |     •     |         |
   Project Pro 2013 |     •     |         |

Resources:

488 questions
4
votes
3 answers

Access CustomProperties set using office365 JS APIs from EWS or REST API

I have an office 365 mail app that stores a value in a custom property before the item is saved. When the item is saved I want to access this property using a server-side application. Reading through the custom properties documentation tells me I…
4
votes
1 answer

Bootstrap not working inside Outlook 365 Deployed Office Add-in

I am trying to implement Bootstrap 3 Tabs in an App for Office but I keep getting the following exception: Unhandled exception at line 1453, column 2 in https://localhost:44303/Scripts/jquery-2.1.3.js 0x800a139e - JavaScript runtime error: Syntax…
4
votes
1 answer

Office 365: need to redirect root domain to www

With only 4 options for DNS records for Office 365 (A, TXT, AAAA and CNAME), I'm hoping to get the http://example.com to redirect to http://www.example.com My client is hosting the name servers with Office 365 and would prefer not to change DNS…
Ethan
  • 400
  • 4
  • 10
3
votes
2 answers

How to find integer and text values (Filter & Search)

I have my data source connected to database in SQL Server through an application in Power Apps, I am making use of Gallery to display the data and I have a text entry to search for specific data in that gallery. I would like to perform the search…
user15500092
3
votes
0 answers

Microsoft Sway doesn't auto refresh at previously shared/displaying embed code

In Microsoft Sway : I have made presentation on MS Sway. Used it's embed code to share. Now, after changing or updating the content of that presentation it doesn't reflect/refresh new changes automatically on the shared page (until it is refreshed…
Ashish Kumar
  • 103
  • 2
  • 8
3
votes
0 answers

Power BI export to PDF automation

So my company won't pay out for Power BI to every user in the business. I have Power BI Pro, I have a report that I wish to create a PDF copy and sent to various recipients. Problem is that I need the data to update to each recipient which has their…
Phil Collins
  • 327
  • 1
  • 4
  • 13
3
votes
0 answers

MS Graph API - Application permissions not supported for group methods - why?

I was wondering if anyone else finds this issue weird / illogical. When building an application registered on the v2 Azure AD endpoint (apps.dev.microsoft.com), you can assign extremely high application permissions that essentially provide full…
3
votes
3 answers

Azure AD - Application Registration - Logout URL - what is SID?

I have created my own application in PHP that authenticates against Azure and then pulls data from Office 365 (Graph) - it works great! When a user logs out of Office 365 I need them to be logged out of my application too. I am using the Logout URL…
MarkB
  • 123
  • 1
  • 7
3
votes
1 answer

New Connector works for Outlook but not Microsoft Teams

I'm trying to build an Office 365 Connector exclusively for use on Microsoft Teams based on this documentation. It seems to work for Outlook groups, but not for Teams. I've successfully created a Connector on the Connectors Developer Dashboard and…
3
votes
3 answers

CSS oddities with Office UI Fabric libraries

I'm working on a Word 2016 Add-in project and I'm having some difficulties using Office UI Fabric libraries. Basically I would like to give my Add-in the official Office look & feel, so I thought that Office UI Fabric would be the best choice, in…
jeanie77
  • 515
  • 1
  • 4
  • 22
3
votes
1 answer

Which version of the Excel API should be referenced in the manifest file, when submitting add-in for the Office Store?

When submitting Excel add-in to the office store. Which version of the Excel API should be referenced in the manifest file? We have experienced being rejected because we didn’t refer to the newest version of the Excel API. But if our Excel add-in…
3
votes
1 answer

CustomProperties are not saved in recurring meeting in Outlook add-in using Office.js

We are adding a custom property using customProps.set("otherProp", "value"); customProps.saveAsync(saveCallback); As mentioned in the documentation, this works fine in a normal meeting but when we do the same in a recurring meeting, the…
Deepak Sharma
  • 1,873
  • 10
  • 23
3
votes
1 answer

Office Add-in show warning - unsupported features by its add-in catalog (SharePoint App Catalog)

I'm trying to deploy a Word Add-in. I've deployed the backend on an onpremises server to IIS. And I've checked it's accessible. I've created an app catalog in Office365 and uploaded the manifest file to the catalog. The catalog shows that the…
Oak3
  • 943
  • 7
  • 20
3
votes
1 answer

Office365 authentication without login redirection

I'm trying to load data from Office365 email without need for user interaction. I've created Azure App and I have Client ID and Client secret. I also have user information (email + password). I need to call Office365 API to download emails from…
3
votes
2 answers

Read parameters from Outlook 365 Add-In manifest

Is it possible to get the parameters from the Outlook 365 add-in manifest programmatically (like version number or maybe resources)? I've searched all over the internet, but haven't found any way to do it yet :( Some background: I need some…
1 2
3
32 33