SYNC DEMO “We bought Grandma a new TV. This is what my Dad did to her remote.”

Slides:



Advertisements
Similar presentations
External Collaboration Internal users Office 2007 Office 2010 Office 2013 New mobile REST endpoints Identity and Collaboration Office 2007.
Advertisements

Managed Scheduled Ad hoc White Glove Pool C Pool BPool A Organizer Attendee.
UI Application Logic Out of the box approach View ViewModel Model Model-View-ViewModel (MVVM)

SQL 2005SQL 2008SQL 2008 R2 Chart Multiple areas NEW! Multiple areas Multiple axes NEW! Multiple axes Calculated series NEW! Calculated series Gauge.
Virtual Network Subnet 1Subnet 2Subnet 3 VPN connection On-premises network Virtual Network Subnet Virtual Network Subnet ExpressRoute.
Death of Security: Breached Hosts/Stolen Data/IP Espionage
SIM403. Claims Provider Trust Relying Party x Relying Party Trust Claims Provider Trust Your ADFS STS Partner ADFS STS & IP Relying Party Trust Partner.
WSV304 Manual Deployment High cost Fully Automated Low cost.

OSP303. demo Status Bar Notification.
and heavy I run out of hardware capacity bigger.
Senior Project Manager & Architect Love Your Data.
4/15/2017 © 2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks and/or trademarks.
Come Visit Us in the Microsoft Solutions Experience! Look for Datacenter and Infrastructure Management TechExpo Level 1 Hall.
Domain-Driven Design Fundamentals Automated Testing for Fraidy Cats Like Me Getting Started with Entity Framework 5 Entity Framework in the Enterprise.
SAMPLE FILL Sample Fill.
pirate s Capabilities Developer Investment Web App Hybrid App Native App.
Patterns & practices Symposium 2013 Windows Azure Active Directory Vittorio
Build /16/2017 © 2015 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION.
1 Trillion Azure AD authentications since the release of the service 50 M Office 365 users active every month >1 Billion authentications every day.
Web sign-in using OpenID Connect Office API access.
Build /17/2017 © 2015 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION.
“We bought Grandma a new TV. This is what my Dad did to her remote.”
Resource App Resource App Resource authorization server authorization endpoint token endpoint A A R.
Authenticate user AuthenticationContext aCtx = new AuthenticationContext(“ AuthenticationResult.
Today, global enterprises run on Windows Server Active Directory 90% of US enterprises and 70% of international corporations use Active Directory.
ARC312. Security Policy Governance Audit Reporting Analysis Data Quality Directory Logon Mobility Provisioning Development Access Control Authentication.
Cloud based storage. Cloud Storage Storage accessed by a web service API It is a block storage, it exposes its storage to clients as Raw storage that.
© User:Digitalsignal / Wikimedia Commons / CC-BY-SA-3.0User:DigitalsignalWikimedia CommonsCC-BY-SA-3.0.
What’s New? – BCS 2013 Brett Lonsdale.  Co-founder of Lightning Tools  One of the hosts on the SharePoint Pod Show  Co-organizer of SharePoint Saturday.
/
IT Unity Webinar Series September 2015 Using Azure Active Directory to Secure Your Apps.
Windows Azure Active Directory Graph API
Today, global enterprises run on Windows Server Active Directory 90% of US enterprises and 70% of international corporations use Active Directory.
A Lap Around Windows Azure Active Directory Stuart Kwan Lead Principal Program Manager Microsoft Corporation SIA209.
(Azure+O365) Identity Presenter Name Position or role Microsoft Azure.
101 ways to authenticate with Azure Active Directory
Andrew Coates Advanced Windows 10 development with the Office 365 APIs DEV33 5.
#MozCon Richard Baxter REALLY TARGETED OUTREACH. "Hey, we need to get some links!"
Chris Padgett.
Adxstudio Portals Training
Today’s Applications Web API Browser Native app Web API Web API
Azure Active Directory is becoming one of, if not the, primary user identity management services for cloud applications. One of Azure Active Directory's.
Redmond Protocols Plugfest 2016 Andrew Davidoff Mail, Calendar, and Contacts Graph API Demonstration Senior Software Engineer.
Overview Authentication & Authorization  Open ID Connect for single sign on  OAuth2 for user & admin consent Office 365 AND outlook.com Easy to use,
Zimbra 60 minutes with. House Keeping ● Who am I? ● First lecture then demo ● Current setup ● Questions? Raise hand 'n ask 'em! ● Humour ● Volume ● Why.
Contact Us.
Create and Assign Entity Roles
Azure Identity Premier Fast Start
Microsoft Ignite /25/ :22 PM
GET-ting Your Office 365 Data Using the Microsoft Graph API
WStore Programmer Guide
How To Add A Xerox Printer To Google Chrome
Frio River Cabins - Frio Vacation Homes - Frio Country Resort

Examcollection
HOW TO ACTIVATE CBS ALL ACCESS? CBS ALL ACCESS is one of the most watched network of USA. That is the only reason it is available on almost every digital.
HOW TO ADD PRIVATE CHANNELS ON ROKU ROKU provides a thousands of channels for the various users. In addition to these channels there are number of channels.
Azure AD Application Proxy
The World Of Connected APIs
פחת ורווח הון סוגיות מיוחדות תהילה ששון עו"ד (רו"ח) ספטמבר 2015
CONTACT US My Best Natural Health
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
Microsoft Graph – Intune API’s
Chapter 16 Class Diagrams.
Firebase Vs. MongoDB: Choose the Best Database of 2019
Line Graphs.
Meet Us
Contact Us
Presentation transcript:

SYNC

DEMO

“We bought Grandma a new TV. This is what my Dad did to her remote.”

app.SetDefaultSignInAsAuthenticationType(CookieAuthenticationDefaults.AuthenticationType); app.UseCookieAuthentication(new CookieAuthenticationOptions { }); app.UseOpenIdConnectAuthentication(new OpenIdConnectAuthenticationOptions { Client_Id = "d71c88d1-f3d3-47e bc9af9a991", Authority = " }); [Authorize]

DEMO

HttpContext.GetOwinContext().Authentication.Challenge( new AuthenticationProperties { RedirectUri = "/" }, OpenIdConnectAuthenticationDefaults.AuthenticationType); HttpContext.GetOwinContext().Authentication.SignOut( OpenIdConnectAuthenticationDefaults.AuthenticationType, CookieAuthenticationDefaults.AuthenticationType);

version= &$filter=state eq ‘WA’ Graph URL (static) Specific entity type, such as users, groups, contacts, tenantDetails, roles, applications, etc. Tenant of interest – can be tenant’s verified domain or objectId. API version – “ ” is the Supported GA version Optional Odata query arguments: $filter, $top

DEMO

AuthenticationContext ctx= new AuthenticationContext(" AuthenticationResult rez = await ctx.AcquireTokenAsync( " "5fc4a5a2-78d5-4d94-b890-a6e6b ");

DEMO