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

Slides:



Advertisements
Similar presentations
I am listening to music. She is writing an .
Advertisements

MY vs I/ME. FAMILY (group, organization, team, department)
Reported Speech: What did these Futuramas characters say last night on TV? I love living in the future! Turn off Next Fry said that he loves living in.
Teri’s R and E The other half of my heart. Short Summary In the other half of my heat kiera and minni are sisters and were born in the back of their dads.
Prabath Siriwardena | Johann Nallathamby.
SYNC DEMO “We bought Grandma a new TV. This is what my Dad did to her remote.”
Title of Presentation Author 1, Author 2, Author 3, Author 4 Abstract Introduction This is my abstract. This is my abstract. This is my abstract. This.
1 Trillion Azure AD authentications since the release of the service 50 M Office 365 users active every month >1 Billion authentications every.
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.
Resource App Resource App Resource authorization server authorization endpoint token endpoint A A R.
Authenticate user AuthenticationContext aCtx = new AuthenticationContext(“ AuthenticationResult.
© User:Digitalsignal / Wikimedia Commons / CC-BY-SA-3.0User:DigitalsignalWikimedia CommonsCC-BY-SA-3.0.
Go Mono Sandy D. 4B November 14, Road OriginalBlack and White I think that the black and white one looks better. I think this because with black.
Datacenter LOB web service LOB app Partner Mobile Device.
Office 365 Platform Flexible Tools Each Office 365 Workload API required different Authentication.
IT Unity Webinar Series September 2015 Using Azure Active Directory to Secure Your Apps.
Windows News app uses Notification Hubs Platform Notification Service App back-end Client app.
Online Service 1. Authorization Request (Start URL) 2. Login page 3. Credentials 4. Authorization page 5. User decision 6. Authorization.
I don’t mind doing the tidying in my room, but I hate doing the tidying in the kitchen because there is usually a mess.
He gets up at.... He gets up at... He has a shower at ...
Box 1Box 4Box 3Box 2 Box 5Box 8Box 7Box 6 My Shadow Box.
(Azure+O365) Identity Presenter Name Position or role Microsoft Azure.
Candy! By Miranda Tillich. I’m so excited its Halloween! I can’t wait to get so much candy. :)
101 ways to authenticate with Azure Active Directory
Core runtime in.NET Framework Newer runtime pieces out-of-band (NuGet) Tooling in Visual Studio Runtime in.NET Framework Tooling in Visual Studio.
Resource Sheet I run to school. Yesterday, I ran to school. Tomorrow, I will run to school. Yesterday, … Tomorrow, …
Group 7 Made by Tuyakbaeva Ksusha.  Hi. My name is Ksusha. I am eleven years old. I am from Russia. I live in Orenburg. I go to music and English classes,a.
Andrew Coates Advanced Windows 10 development with the Office 365 APIs DEV33 5.
DEV319.
All about me By Elyse Hiskey. I Play softball. My dad is my softball coach for I club we just moved there. My pitching coach is Kati she is the best.
Identity & Security Andres Käver, IT Kolledž 2015.
DON’T FORGET TO DELETE THIS SLIDE!. You may have more than one Nationality and ethnicity! List them all! Include flags!
API Auth By Kyle Bradley. Role Definitions  User (Resource Owner)  The resource owner is the person who is giving access to some portion of their account.
A Holiday At Home By: Mark Heaney December
E.S.L. © 2008 Quinín Freire Family. Mom and Dad Father and son.
Today’s Applications Web API Browser Native app Web API Web API
By: Brina wiki/File:Yugoslav_Partis ans_flag_1945.svg.
Azure Active Directory is becoming one of, if not the, primary user identity management services for cloud applications. One of Azure Active Directory's.
What if your app could put the power of analytics everywhere decisions are made? Modern apps with data visualizations built-in have the power to inform.
Friends and Gifts Recycle 2 (Period 3) 课后微课 执教:塘厦第三小学 何晓珠 名师团队:张凝工作室
Thanks for presenting! This slide deck is provided using the SPSNL theme Some highlights: The date: 11th of June #SPSNL16, please make sure to be on time.
Azure Encryption Anthony Turner anthturner.com
Family © 2008 Quinín Freire.
Build smarter bots and devices by connecting to the Microsoft Graph
WStore Programmer Guide
Azure DevCamp Identity and Office 365 APIs
HIM 355 Competitive Success-- snaptutorial.com
HIM 355 Enthusiastic Study/snaptutorial.com
HIM 355Competitive Success/tutorialrank.com
HIM 355 Education for Service-- snaptutorial.com
HIM 355 Education for Service-- tutorialrank.com.
HIM 355 Teaching Effectively-- snaptutorial.com
ACS and the Cloud.
קורס פיננסי – מושגים פיננסיים / כלכליים
I was watching TV. START!.
Calculate n! Multiply my number by the factorial of the rest of the numbers. if( num > 2 ) return num * factorialR2( num - 1 ); else return 2;
Title Your Name.
Heroes Student example.
Office 365 Development.
I was watching TV. START!.
CSG, Power BI & Embedded.
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
User login, selects scope (Accounts and Sas and Date Range and confirm
Title Introduction: Discussion & Conclusion: Methods & Results:
SCES Dolch Word List First Grade
Beethoven- String Quartet No.16, Op.135/Ⅰ
Lecture 15: Writing Your Own Web Service
Presentation transcript:

“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]

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

Notifications = new OpenIdConnectAuthenticationNotifications() { AccessCodeReceived = (context) => { var code = context.Code; ClientCredential credential = new ClientCredential(clientId, appKey); string tenantID = context.ClaimsIdentity.FindFirst(tenantIdClaimType).Value; AuthenticationContext authContext = new AuthenticationContext(string.Format(" tenantID)); AuthenticationResult result = authContext.AcquireTokenByAuthorizationCode( code, new Uri(HttpContext.Current.Request.Url.GetLeftPart(UriPartial.Path)), credential, graphResourceID); string signedInUserID = context.ClaimsIdentity.FindFirst(ClaimTypes.NameIdentifier).Value; db.TokenCache.Add(F(signedInUserID, result )); db.SaveChanges(); return Task.FromResult(0); },

?

Azure Active Directory Premium