Presentation is loading. Please wait.

Presentation is loading. Please wait.

11/11/2018 1:08 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.

Similar presentations


Presentation on theme: "11/11/2018 1:08 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN."— Presentation transcript:

1 11/11/2018 1:08 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

2 Build smarter apps with Office using the Microsoft Graph
11/11/2018 1:08 PM BRK3365 Build smarter apps with Office using the Microsoft Graph © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

3 A software developer is a person who writes programs
11/11/2018 1:08 PM A software developer is a person who writes programs that use data to improve lives Yina Arenas © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

4 Agenda Opportunity Microsoft Graph 101 Smart Apps Next steps
Microsoft Build 2017 11/11/2018 1:08 PM Opportunity Microsoft Graph 101 Agenda Smart Apps Next steps © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

5 Microsoft Graph a unified REST API
Microsoft Build 2017 11/11/2018 1:08 PM Microsoft Graph a unified REST API and comprehensive developer experience for integrating the data and intelligence exposed by Microsoft services © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

6 Opportunity 90% 120M 8T 69 Are using Office 365
11/11/2018 1:08 PM Opportunity 90% Of Fortune 500 companies Are using Office 365 120M Monthly active users Office 365 commercial subscriptions 8T Resources in Microsoft Graph ( s, events, calendar, users, files…) 69 Graph mentions In Build 2017 Keynotes © Microsoft Corporation. All rights reserved.

7 Microsoft Graph ACTIVITY CONTENT CONVERSATIONS INSIGHTS ME TRENDING
Microsoft Build 2017 11/11/2018 1:08 PM Microsoft Graph ACTIVITY CONTENT CONVERSATIONS INSIGHTS ME TRENDING ORGANIZATION GROUPS CHATS REPORTS DOCUMENTS EVENTS DEVICES SHARED CONTACTS SITES PEOPLE TASKS TEAMS © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

8 11/11/2018 1:08 PM Is this person out of the office? Who is their manager? Where do they need to be next? What documents have they been working on recently? Rich context Deep insights What documents are most interesting to this person? What’s the best time to meet for this group of people?  Who should this person contact for info on this topic? The core data that drives business is accessible through the Microsoft Graph Real-time updates Reschedule meeting when a conflict appears Notify owner when a file is modified Continue a process immediately after approval mail is received © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

9 Standalone web, device, and service apps
Office 365 Platform Extensions Canvases Standalone web, device, and service apps Documents Pages Embedded canvases Conversations 1 Microsoft Graph

10 Microsoft Graph All users Access user, group, and organizational data
One endpoint One token All users Your app Users Groups Outlook OneNote more… SharePoint Intune Teams Azure AD Planner Excel

11 Seizing the opportunity
11/11/2018 1:08 PM Seizing the opportunity More time for your value prop (*) Empiric data © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

12 Agenda Opportunity Microsoft Graph 101 Smart Apps Next steps
Microsoft Build 2017 11/11/2018 1:08 PM Opportunity Microsoft Graph 101 Agenda Smart Apps Next steps © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

13 Microsoft Graph Data Active Directory SharePoint Sites OneDrive
Microsoft Build 2017 11/11/2018 1:08 PM Microsoft Graph Data Active Directory Users profile photo direct reports Groups members conversations SharePoint Sites Lists OneDrive Files upload download copy versions Outlook Mail messages folders send message Calendar events find times Excel OneNote Planner Contacts Directory Beta Teams Insights Project Rome Devices Activities Intune Reports …and much more © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

14 Announcements at Ignite
Microsoft Build 2017 11/11/2018 1:08 PM Announcements at Ignite 2017 Data Generally Available ( v1.0 ) Preview ( beta ) SharePoint Lists SharePoint Sites People Planner  OneNote for SharePoint sites Outlook Rules, Categories, Time zones, Working hours, headers, Rooms OneDrive File Versions Outlook Tasks Microsoft Teams Insights (powering Delve) Project Rome Office 365 Reporting Intune © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

15 Get user profile Yina GET: /users/yina GET: /users/yina/photo/…
Microsoft Build 2017 11/11/2018 1:08 PM GET: /users/yina { "displayName": "Yina", "jobTitle": "PRINCIPAL PM MANAGER", } GET: /users/yina/photo/… {} GET: /users/yina/manager {"displayName": "Tristan", …} GET: /users/yina/directReports "value" : [ {"displayName": "Matt", …}, {"displayName": "Dmitry", …}, ] GET: /me/memberOf/… {"displayName": "Office engineering", …}, {"displayName": "Women in tech", …}, Get user profile Tristan manager Groups memberOf Yina Dmitry Matt Sudhi directReports © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

16 Get content GET /me/drive/root/… GET /drives/items/{id}/workbook
Microsoft Build 2017 11/11/2018 1:08 PM GET /me/drive/root/… "value" : [ {"name": "proposal.pptx",… }, {"name": "forecast.xlsx",… } ] GET /drives/items/{id}/workbook GET /me/messages GET /me/events GET /me/contacts GET /me/onenote/notebooks GET /me/planner/tasks GET /me/devices GET /sites:/teams/opg:/ GET /sites:/teams/opg:/lists GET /groups/{id}/conversations ` Get content Documents Calendar Sites Tasks Meetings Contacts © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

17 Get insights GET /me/insights/trending GET /me/drive/recent
Microsoft Build 2017 11/11/2018 1:08 PM GET /me/insights/trending "value" : [ {"name": "presentation.pptx", …}, {"name": "forecast.xlsx", …} ] GET /me/drive/recent {"name": "guidelines.pptx", …}, {"name": "budget.xlsx", …} GET /me/people/?$search="topic: planning" {"displayName": "Dan", …}, {"displayName": "Sean", …}, POST /me/findMeetingTimes { "attendees": [ "type": "required", " Address": { "address": } ], "meetingDuration": "2h" Get insights Out of office Trending Documents Find me the best time to meet Ana Search people based on topics People I’m working with Recent Documents © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

18 Developing with Microsoft Graph
11/11/2018 1:08 PM Developing with Microsoft Graph Try Graph Explorer Try a quick start Register your app Find SDKs, samples, and tooling Build and distribute © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

19 Calling the API https://graph.microsoft.com /{version} /{resource}
Build 2015 11/11/2018 1:08 PM Calling the API HTTP verbs dictate the request intent: GET | POST | PATCH | PUT | DELETE Version: /v1.0 or /beta Resource: /users, /groups, /sites, /drives, /devices, more… Member from collection: /users/yina Property: /users/yina/department Traverse to related resources via navigations: /users/yina/events Query parameters: /users/yina/events?$top=5 Format results: $select | $orderby Control results: $filter | $expand Paging: $top | $skip | $skiptoken /{version} /{resource} /{id} /{property} ?{query-parameters} © 2015 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

20 Demo Graph Explorer https://graph.microsoft.com > graph explorer
Microsoft Build 2017 11/11/2018 1:08 PM Demo Graph Explorer > graph explorer © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

21 Microsoft Graph Capabilities
Microsoft Build 2017 11/11/2018 1:08 PM Microsoft Graph Capabilities Auth Credentials Work/School Personal OAuth scopes User App OData Filter Order Pagination Compliance Conditional access National clouds Query patterns Web hooks Delta Extensions Batching SDKs & tools © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

22 Announcements at Ignite
Microsoft Build 2017 11/11/2018 1:08 PM Announcements at Ignite 2017 Capabilities Generally Available ( v1.0 ) Preview ( beta ) App-only permissions for OneDrive Delta query for OneDrive, AAD and Outlook Web hooks for OneDrive Web hooks for Outlook Extend Graph with your own data SDKs for .Net/Xamarin, JS/Node, Android and PHP  Azure Functions bindings Web hooks for users and groups Delta query scoping filter for AAD Batching © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

23 Get changes GET/me/mailFolders/{id}/messages/delta POST /subscriptions
"value" : […] POST /subscriptions { "changeType": "created,updated", "notificationUrl": " "resource": "/me/mailfolders('AA')/messages", } GET/me/mailFolders/{id}/messages/delta ?$deltatoken=BB" Get changes Edited a file Scheduled a new meeting Got a new hire Added a new member to a group Got high important

24 Add extensions Open Extensions
GET /me/message/<id>/?$expand=extensions { "displayName": "Yina", "extensions": [ "extensionName": "Com.Contoso.Referral", "companyName": "Wingtip Toys", "expirationDate": " T11", "dealValue": 10,000 } ] Schema extensions POST /schemaExtensions "id": "training_courses", "targetTypes": [ "Group" ], "properties": [ "name": "courseName", "type": "String" }… GET /groups?$filter=courses/name eq Math101 Add extensions Customer referral Group: Math 101 PMP Certified Favorite color: blue

25 Use $batch POST /$batch Events Tasks Folder { "requests": [{
Microsoft Build 2017 11/11/2018 1:08 PM POST /$batch { "requests": [{ "id": "1", "url": "/me/drive/root/children",    "method": "POST",    "body": {     "name": "folder1",     "folder": {}    },    "headers": {     "content-type": "application/json"    }   }, {    "id": "2",    "url": "/me/drive/root/children/folder1",    "method": "GET",    "dependsOn": ["1"] }, { "id": "3", "method": "GET", "url": "/me/planner/tasks" "id": "4", "url": "/groups/{id}/events" }  ] Use $batch Events Tasks Folder © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

26 1. Track 2. Change 3. React GET/groups/delta POST/subscriptions
11/11/2018 1:08 PM 1. Track GET/groups/delta POST/subscriptions 2. Change "adatumisv_courses": { "id": 123, "name": "New Managers", "type": "Online" } POST/groups/ 3. React Add member Create folder Create event Create task Create plan Add as favorite POST/$batch © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

27 Developing with Microsoft Graph
11/11/2018 1:08 PM Developing with Microsoft Graph Try Graph Explorer Try a quick start Register your app Find SDKs, samples and tooling Build and distribute © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

28 Demo $batch, Extensions and Quick Start
11/11/2018 1:08 PM Demo $batch, Extensions and Quick Start > quick start © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

29 11/11/2018 1:08 PM 0-App < 2min App: ASP.net Web App Send Get user profile picture Upload picture to user’s OneDrive © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

30 Developing with Microsoft Graph
11/11/2018 1:08 PM Developing with Microsoft Graph Try Graph Explorer Try a quick start Register your app Find SDKs, samples, and tooling Build and distribute © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

31 Azure AD auth endpoints
11/11/2018 1:08 PM Azure AD auth endpoints endpoint with ADAL endpoint with MSAL v1.0 v2.0 Work and school Personal © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

32 App registration v2.0 Create a new application
11/11/2018 1:08 PM App registration v2.0 Create a new application A unique Id is created for your app Add app platform Web App, SPA, Daemon Native App Web API (Office Add-in) Add permissions for admin consent flows For delegated access for all users in the organization For application access © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

33 App types and permissions
11/11/2018 1:08 PM App types and permissions Get access on behalf of users Get access as a service Single page app Web app Mobile or desktop app App with middle tier web API Service or daemon app Permission type: delegated Permission type: application Effective permission Effective permission Delegated permissions User privileges App permissions Users can consent for their data or admin can consent for all users Only admin can consent © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

34 Auth YOUR APP Microsoft Identity MSAL or ADAL Microsoft Graph Id token
Microsoft Build 2017 11/11/2018 1:08 PM Auth Microsoft Identity Id token access_token refresh_token YOUR APP Microsoft Graph MSAL or ADAL access_token © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

35 Developing with Microsoft Graph
11/11/2018 1:08 PM Developing with Microsoft Graph Try Graph Explorer Try a quick start Register your app Find SDKs, samples, and tooling Build and distribute © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

36 SDKs, samples, and tooling
Microsoft Tech Summit FY17 11/11/2018 1:08 PM SDKs, samples, and tooling PREVIEW GA* GA GA GA ASP.NET MVC JavaScript Angular PHP Python PREVIEW PREVIEW GA* GA* GA* Xamarin UWP Android iOS Ruby UPDATED PREVIEW VS integration Bindings © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

37 New Azure function bindings
11/11/2018 1:08 PM PREVIEW New Azure function bindings Bindings for Microsoft Graph Uses Microsoft Graph .Net SDK Auth is handled for you!!! Azure Function queries Microsoft Graph Microsoft Graph Web hook triggers function © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

38 Demo SDKs and Bindings http://aka.ms/funcgraphdoc 11/11/2018 1:08 PM
© Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

39 Developing with Microsoft Graph
11/11/2018 1:08 PM Developing with Microsoft Graph Try Graph Explorer Try a quick start Register your app Find SDKs, samples, and tooling Build and distribute © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

40 Microsoft Graph API vs. Service APIs
11/11/2018 1:08 PM Microsoft Graph API vs. Service APIs Microsoft Graph: Simplest way to access data in Office 365 and other Microsoft cloud services Service specific endpoints: Available and supported Require resource specific access tokens Your app Your app Outlook Azure AD SharePoint © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

41 Calling SharePoint REST APIs
11/11/2018 1:08 PM Calling SharePoint REST APIs Get access token to call Microsoft Graph POST &scope=graph.microsoft.com Call Microsoft Graph to discover the SharePoint RootSite: GET Use refresh token to get an access token for SharePoint &resource={siteURL} Call SharePoint endpoint GET {siteURL}/_api/web/navigation/quicklaunch (*) Only supported in v1.0 auth © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

42 Agenda Opportunity Microsoft Graph 101 Smart Apps Next steps
Microsoft Build 2017 11/11/2018 1:08 PM Opportunity Microsoft Graph 101 Agenda Smart Apps Next steps © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

43 11/11/2018 1:08 PM Is this person out of the office? Who is their manager? Where do they need to be next? What documents have they been working on recently? Rich context What documents are most interesting to this person? What’s the best time to meet for this group of people?  Who should this person contact for info on this topic? The core data that drives business is accessible through the Microsoft Graph Deep insights Reschedule meeting when a conflict appears Notify owner when a file is modified Continue a process immediately after approval mail is received Real-time updates © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

44 Microsoft identity Rich context Deep insights Real-time updates
11/11/2018 1:08 PM Microsoft identity Rich context Deep insights Real-time updates © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

45 Leverage Microsoft identity
11/11/2018 1:08 PM /me /me/photo/$value Leverage Microsoft identity © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

46 Microsoft identity Rich context Deep insights Real-time updates
11/11/2018 1:08 PM Microsoft identity Rich context Deep insights Real-time updates © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

47 Bring relevant data in user context
11/11/2018 1:08 PM /me/calendar/calendarView /me/drive/recent Bring relevant data in user context © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

48 There is more… Power enterprise portals integration with SPFX
11/11/2018 1:08 PM There is more… Power enterprise portals integration with SPFX Native file integration with OneDrive Export data to Excel Calendar/task aware with Outlook and Planner Record important notes with OneNote Power collaboration with Groups and Microsoft Teams Connect with line of business data with Extensions © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

49 Microsoft identity Rich context Deep insights Real-time updates
11/11/2018 1:08 PM Microsoft identity Rich context Deep insights Real-time updates © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

50 Harness insights 11/11/2018 1:08 PM
© Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

51 Leveraging Microsoft Graph
11/11/2018 1:08 PM Leveraging Microsoft Graph Web apps Native & device apps Microsoft Graph Bots Background processes © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

52 Agenda The opportunity Microsoft Graph 101 Smart apps Next steps
Microsoft Build 2017 11/11/2018 1:08 PM The opportunity Microsoft Graph 101 Agenda Smart apps Next steps © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

53 What’s Next for Microsoft Graph
Microsoft Build 2017 11/11/2018 1:08 PM What’s Next for Microsoft Graph General availability of preview features New data sets Richer query capabilities More permission options and improved consent experience Continued improvement in developer experiences and tooling You can influence our roadmap, share your suggestions, and vote in User Voice © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

54 Get started today https://graph.microsoft.com #MicrosoftGraph
11/11/2018 1:08 PM Get started today Twitter #MicrosoftGraph GitHub /MicrosoftGraph StackOverflow [MicrosoftGraph] © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.


Download ppt "11/11/2018 1:08 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN."

Similar presentations


Ads by Google