OneDrive mailbox.makeEwsRequest( ); Message forwarded by ExchangeEndpoint retrieves attachments App in Outlook.

Slides:



Advertisements
Similar presentations
1. XP 2 * The Web is a collection of files that reside on computers, called Web servers. * Web servers are connected to each other through the Internet.
Advertisements

XP New Perspectives on Browser and Basics Tutorial 1 1 Browser and Basics Tutorial 1.
Outlook 2013 Web App (OWA) User Guide Horizon School Division #205.
Bringing SharePoint information into Office through Office Apps.
1 Trillion Azure AD authentications since the release of the service 50 M Office 365 users active every month >1 Billion authentications every.
Desktop Mobile Xbox IoT Holographic Surface Hub Universal Windows Platform Core APIs.
Contacts. Stored in the Contact folder Stores information about businesses or people –Address, phone number, address etc.
XP Browser and Basics1. XP Browser and Basics2 Learn about Web browser software and Web pages The Web is a collection of files that reside.
Permissions model Restricted -> Read -> Write -> ReadWrite.
Browser and Basics Tutorial 1. Learn about Web browser software and Web pages The Web is a collection of files that reside on computers, called.
Using Microsoft Outlook: Basics. Objectives Guided Tour of Outlook –Identification –Views Basics –Contacts –Folders –Web Access Q&A.
AO Made Easy Your guide to using on your office placement.
Records and Information Management IT - Enterprise Content Management SPIDR II Global Features Reference Guide April 2013.
Microsoft Office 2003 Outlook. Outlook is a mail service of Microsoft Exchange Outlook Outlook is used to access , calendars, contacts, tasks, and.
Managing Client Access
Module 4 Managing Client Access. Module Overview Configuring the Client Access Server Role Configuring Client Access Services for Outlook Clients Configuring.
Microsoft Outlook Web Application (OWA)
Etiquette at MstreamIT. By Sam 1.  1. Title page.  2. Contents page.  3. Introduction.  4. Ways to access s.  5. Send to multiple contacts.
OneDrive mailbox.makeEwsRequest( ); Message forwarded by ExchangeEndpoint retrieves attachments App in Outlook.
Open the Goodyear Homepage Click on Teacher Tools.
Basic Instructions on how to use One Drive and share files. ONE Drive Your LogoYour own footer.
ITEC 1001 Tutorial 1 Browser and Basics. Web browser software & Web pages The Web is a collection of files that reside on computers, called Web.
Teach Yourself Windows 95 Module 4: Using Microsoft Exchange for Faxes and .
0 Y! Mail Application Development Platform Open Hack day 14 th Feb 2009.
Outlook Web App Crash course. Outlook Agenda Login Login Reset Password Reset Password Getting Started in Outlook Web App Getting Started in Outlook Web.
Basic Features and Options Accessing  Means of communicating electronically via the Internet.  Used by individuals, businesses,
Outlook 2013 & 2010 Lync Messanger. Outlook 2013 Ribbon Navigation Pane Message View Reading Pane Tabs Status Bar.
Exchange 2013 Web App (OWA) User Guide. Table of Contents How to Logon Opening View Navigation Mail Contacts Calendar 2.
Appear in messages and appointments Contextual to current item Cross platform, cross device.
FTLOA Go to User Name: first last name lower case.
XP Browser and Basics COM111 Introduction to Computer Applications.
Cloud Roadshow. Advanced Office add-in Development with Outlook.
Learning Intentions: To understand what is required to achieve a Pass, Merit or Distinction for Task 3.
Outlook Web Access (OWA) is a web mail service of Microsoft Exchange; allow users to connect remotely via a Web browser OWA is used to access ,
and the business environment Explain what is and how is it used in a business environment A02 .
Technical Awareness on Analysis of Headers.
Expenses Timesheets Approvals Expense capture Timesheets Expense capture Timesheets Expense capture Timesheets.
SAML Token Claims Based Identity SAML Token Claims Based Identity SPUser.
Agenda App running in Outlook Write once, run everywhere Apps run on Outlook, Outlook Web App, and Mobile Outlook Web App. Standards based development.
Andrew Coates Advanced Office add-in Development with Outlook DEV32 7.
Wes Hackett Principal Solutions Architect Chris O’Brien Head of Development.
Use Outlook Task API to access tasks stored on user’s mailbox. These REST API’s are  Simple to use.  Supports CRUD.  JSON structured.  OAuth 2.0.
Redmond Protocols Plugfest 2016 Tarun Chopra Accessing APIs through Add-Ins Sr. Escalation Engineer.
Redmond Protocols Plugfest 2016 Andrew Davidoff Mail, Calendar, and Contacts Graph API Demonstration Senior Software Engineer.
m/ Generally Available:  Webhooks on Outlook entities  Access to consumer services OneDrive and Outlook.com  OneDrive.
SharePoint Saturday Genève 2016
4/14/2018 4:26 AM Cloud Roadshow © 2014 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO.
Chapter 1 Managing Messages with Outlook
Mail Apps for Office Name Title Company.
Microsoft Outlook 2010 Tips
Migrating SharePoint Add-ins from Azure ACS to Azure AD
Ariba Contracts: Complete a Review Task
1. Open any Office 2016 app, such as Word, and create a new document.
Flickr Authentication
Outlook 2003.
Microsoft Outlook 2000.
Office 365 Development.
WorkingLife Balance An example ISV scenario 11/14/2018 6:51 AM
IOS SDK v1.0 with NAM 4.2.
MEC /23/ :42 PM © 2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Technology Support Center Office 365 Outlook
Agenda OAuth Concepts Programming OAuth.
Adding your VUMC account to the Outlook App
Outlook 2007 & Google Apps Sync
Office 365 Development.
Azure Information Protection
Yahoo Groups.
Basic Features and Options
Basic Features and Options
Presentation transcript:

OneDrive

mailbox.makeEwsRequest( ); Message forwarded by ExchangeEndpoint retrieves attachments App in Outlook

Outlook APP Exchange App Backend App requests attachment metadata, callback token and EWS URL via JS APIs

Outlook APP Exchange App Backend App passes attachment id, token and EWS URL to its backend

Outlook APP Exchange App Backend App backend calls EWS to get attachment

Outlook APP Launch OAuth Azure AD App Backend SP

Outlook APP Launch OAuth App’s redirect html page App Backend SP

Outlook APP Launch OAuth App’s redirect html page App Backend SP

Outlook APP Launch OAuth App Backend SP Azure AD 1. Exchange for refresh and access token 2. Call SP with access token

User Identity Token Make EWS requests Settings User Profile

Get/set/add recipients or attendees Get/set the subject

Add file or item attachments

Prepend to the body Overwrite current selection in body

Get/set start or end time Get/set location Get/set/add attendees

Saved on the sent item Can be used to mark a composed message (eg “Tracked” in CRM)

ReadWrit box ReadWriteItem ReadItem Restricted

Book Workspace Address Book Bob Costas Jane Smith John Doe

Newsletter Approval Select documents for approval:

Sponsored by

var item = Office.context.mailbox.item; item.subject.setAsync(“Hello”);

var item = Office.context.mailbox.item; item.body.setSelectedData( “ Hello! ”, { coercionType : ‘HTML’ }); item.body.prependAsync(“Hello World!”);

var item = Office.context.mailbox.item; item.addFileAttachmentAsync( “ item.addItemAttachmentAsync(“EWS item id”);

var item = Office.context.mailbox.item; var now = new Date(); item.start.setAsync(now); item.location.setAsync(“My office”);