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
2
votes
1 answer

Microsoft Flow mapping values dynamically

We are connecting one our applications to Microsoft Flow. To achieve one of our functions we need to have Microsoft Flow serve outputs to dynamic data. Let me explain what I meant, { 'Firstname': 'John', 'Lastname': 'Doe' } if this is the…
2
votes
1 answer

office.js dialog api fail to messageParent in IE11 on Win7 and Win8.1

I tried to use dialog api for AD authenticating in Office add-in. I try to send message parent and it works well in Chrome but not in IE 11. Here is same problem described detail:…
dongseok0
  • 737
  • 2
  • 7
  • 18
2
votes
0 answers

can't add email address to a contact from the People in Office 365 after creating a contact with only a name using Microsoft Graph API

After creating a contact with only a contact name with my app using Microsoft Graph; I added an email address to this contact in People UI in Office 365 (Business Premium), and I can't save this change. I get the following message: The contact…
2
votes
2 answers

Can JS open up an Office Add-In?

I would like to add a button on my page to programmatically via JS to open the Outlook Add-In and load a specific Add-In. Is that possible? Any tips, directions or examples would be greatly appreciated. PS This is for an onpremises Exchange server,…
2
votes
0 answers

httprequest and Authentication with ADFS from Universal App

I am trying to make a httprequest to a web that is authenticated with ADFS of a private company. I am able to login and get the token of my App. I am sure I am doing it correct due to I can get the contacts of my O365.After getting the token I try…
ronconsoda
  • 117
  • 3
  • 15
2
votes
2 answers

How to get attachments details through office.js in outlook appointment compose mode?

I am using Office.js in development of outlook addin. In the context of appointment item compose mode I need to get the attachments details through office.js API. How can I get these details through Office.js API? I found API Async methods to add…
2
votes
2 answers

What version of IE is being used inside Outlook 2016 Desktop app?

I initially assumed it would be the IE that is currently installed but there seems to be some differences. I get JS related errors when loading my add-in Outlook 2016 Desktop but not in Office 365 (Web). How would I find solution to the problem if I…
lbrahim
  • 3,710
  • 12
  • 57
  • 95
2
votes
2 answers

Saving OfficeJS Add-In state across all documents?

I know that I can save Add-In state per document using document.settings. Is there a way to save state (e.g. active license) across documents for the same Add-In?
Jonas Kemper
  • 3,745
  • 3
  • 14
  • 21
2
votes
0 answers

Retrieving messages with embedded images - HasAttachments flag or something else?

I'm working with the v2.0 messages api to retrieve messages from an Office365 or Outlook email accounts. When retrieving messages with attachments, the HasAttachments flag is set to true so I know to retrieve attachment(s) for the message. One…
bvstone
  • 587
  • 2
  • 6
  • 17
2
votes
1 answer

Add-In Commands Ribbon shows in Excel Online but not in Excel for Windows

I have an Add-In with its own Ribbon that works fine in Excel online but does not show the Ribbon in Excel on Windows [1]. There, it only shows the default task-pane. To make sure it does not have to do with my own manifest, I verified this with the…
Jonas Kemper
  • 3,745
  • 3
  • 14
  • 21
2
votes
3 answers

how to add activation rule as a contextual add-in when email body has a Link

how to add activation rule as a contextual add-in when email body has a Link as fallowing Message…
DevÁsith
  • 1,072
  • 12
  • 38
2
votes
2 answers

Outlook Web Add-in not activating in Calendar edit mode

I'm trying to write an Outlook web add-in to ask for additional information when creating a new appointment. At this point I'm able to open my add-in's pane when reading an appointment, but when I try to create or edit an appointment, this pane…
2
votes
2 answers

Disable Office 365 Outlook Add-in for desktop

I have developed an Office 365 Outlook Add-in for the web. It's automatically supported in desktop also. I want to disable the app only for the desktop. I guess we need to change something in Manifest file but I couldn't get any clue. Can anyone…
2
votes
2 answers

Whether Outlook SDK be able to access Office365 User data? Or Microsoft Graph API be able to access Live.com users?

Whether OutlookSDK at dev.outlook.com could access Office365 user data (calendars, contacts, mail)? How's about Microsoft Graph API, could them be able access live.com users? (calendars, contacts, tasks, mail)? I'm curious at this point, want to…
2
votes
2 answers

Can't get attachments from EWS for fowarded emails in an Outlook addin in the desktop version of Outlook 2016

I have a problem with attachment id's of attachments in forwarded emails/emails in a thread. When fetching attachments from the "source/original" email (both inline and normal attachments) I can successfully retrieve the content of the attachment…