Azure AD application Registration

Ғылым және технология

#AzureAD #RegisterAzureADApplication
Azure AD Application Registration
Applicaiton Object
AzureAD OpenidConnect Applicaiton
Oauth Client Credential Flow.

Пікірлер: 49

  • @fiscalfitness915
    @fiscalfitness915Ай бұрын

    Best videos regarding MS 365 in youtube. God bless man.

  • @saeedad
    @saeedad3 жыл бұрын

    Great contents, One thing to add that adding secret only allows to copy till that page is refreshed. Once refreshed no way to obtain secret. Also it will be good to know in depth the difference between App registration and Enterprise application registration. Still these are some of the best contents I have seen about Microsoft Azure. Thank you (::)

  • @TellaTrix
    @TellaTrix3 жыл бұрын

    It was really informative video. Thank you for sharing this with us

  • @empuraan4710
    @empuraan47102 жыл бұрын

    Good going... luckily needed the user data via Graph as well .. thanks

  • @nikhil9860
    @nikhil98602 жыл бұрын

    Great content like always

  • @swarnaprasan7166
    @swarnaprasan71663 жыл бұрын

    thank you so much for the video.

  • @human4729
    @human4729 Жыл бұрын

    Very well explained

  • @maheshdesai3
    @maheshdesai35 ай бұрын

    Grate Contents, Brother Thank you.

  • @AshutoshUpadhyay2206
    @AshutoshUpadhyay22062 жыл бұрын

    Hello, Thank you for covering this. I would like to know how can I add a windows AD group into a custom claim on Azure AD? I am looking to use AD groups for applications running on a platform that uses role-claims or custom claims to enable applications to have access groups or AD groups separately.

  • @smithbryanespina7124
    @smithbryanespina71242 жыл бұрын

    Great explanation. Thanks 😊

  • @ConceptsWork

    @ConceptsWork

    2 жыл бұрын

    Thanks for watching!

  • @indiraveeramallu9840
    @indiraveeramallu98402 жыл бұрын

    I understand OAuth is an authorization protocol where OIDC is an authentication protocol. How do we differentiate OAuth and OIDC with respect to configuration.

  • @ashishomar1982
    @ashishomar19822 жыл бұрын

    great Video. i need to create an sendtoEmail for printing domain that uses microsoft oauth2.0 protocol for authentication/authorization. I guess we can use specific scopes for validating the Microsoft provided SMTP servers that are used to send emails

  • @paritoshnagar5200
    @paritoshnagar52002 жыл бұрын

    You did great job explaining. I have few questions since I have building sass b2b app 1. How can I restrict tennents 2. If one of client org is not on AAD how to setup authentication

  • @ConceptsWork

    @ConceptsWork

    2 жыл бұрын

    When you are talking about the restrictions, can you tell us, if you want a restriction, where your application cannot be added to some other tenant ??

  • @MuhammadUsman-ze7pc
    @MuhammadUsman-ze7pc2 жыл бұрын

    hey - it would be great if you can link the previous video in description, as I came to this video through google, cant find the last video you've been referring in this post.

  • @Deekudla
    @Deekudla3 жыл бұрын

    Can we have multiple applications point to a single "registered application" in AD? Based on different application can redirect URL change?

  • @sathvikgs4208
    @sathvikgs42083 жыл бұрын

    Please Make a Video for New application registration in Azure Active directory using SAML/Please post the video link you have made it already.

  • @pg4694
    @pg46942 жыл бұрын

    now how to decide what shld be the uri u mentioned the first console

  • @pallavia.n802
    @pallavia.n8023 жыл бұрын

    Hi, Video was great!! please create video which says the difference between OAUTH 2.0 and OpenID connect protocol... Thank you

  • @ConceptsWork

    @ConceptsWork

    3 жыл бұрын

    Hi Pallavi, there is a playlist already for that - kzread.info/dash/bejne/ipVmrtOFe9HUn7A.html&ab_channel=ConceptsWork

  • @mariyammarsha4851
    @mariyammarsha4851 Жыл бұрын

    Can we create alerts for automation account certificate expiry by using aap registration service

  • @khavea
    @khavea3 жыл бұрын

    Thanks for the details. Would you provide pointers/more details about implicit grant flow and Integrated Windows Authentication option?

  • @ConceptsWork

    @ConceptsWork

    3 жыл бұрын

    For sure, we will try to post.

  • @jinilk6997
    @jinilk6997 Жыл бұрын

    Thanks for such an amazing and detailed playlist on Azure AD..(y) I have a small doubt , We have lot of Apps registered in out Tenant and some of the APPs even we dont know who owns ,, Is there a way we can find whether the app is still using through some logs ?

  • @ConceptsWork

    @ConceptsWork

    Жыл бұрын

    For each applicatio nyou can use sign in logs, use microsoft graph to query data.

  • @itsdd9873
    @itsdd98734 жыл бұрын

    Would like understand in much deep how we have add custom claim in preregistration ID_Token, like if I want to add UPN how it can be done.

  • @ConceptsWork

    @ConceptsWork

    4 жыл бұрын

    For sure will add that in our next post.

  • @dineshchaudhary2918
    @dineshchaudhary2918 Жыл бұрын

    Sccm registration should be there to sync cloud collection to azure Ad

  • @indravaish5177
    @indravaish5177 Жыл бұрын

    Hello Sir, Could you please share the scrip in this video that u used

  • @nitinhonours
    @nitinhonours Жыл бұрын

    Can u give the link of oauth series

  • @nickbrights9436
    @nickbrights94363 жыл бұрын

    Urgent question, sorry running on project deadline : I am looking for ways to be able to query MS Graph to grab all the email messages based on certain conditions that our programmer is building a code for and save in " .msg or .eml format. " in a database. I am unable to find a way to do that as looks like Microsoft doesn't allow grab of .msg ( outlook file) and retrieve it. Is there a way in MS graph or do we use a 3rd party api to accomplish this task ?

  • @ConceptsWork

    @ConceptsWork

    3 жыл бұрын

    Your app must use the right permissions, like mail read write all. Check out this sample script to query data. $tenant = Read-Host ('Enter your Tenant Name') $Openid = Invoke-RestMethod -uri "login.microsoftonline.com/$tenant/.well-known/openid-configuration" $tokenendpoint = $Openid.token_endpoint $Body = @{ client_id = "44537229-5f1-155e658f6f13" client_secret = "741C1Ni~z-D3M.E1" redirect_uri = "localhost" grant_type = "client_credentials" resource= "graph.microsoft.com" tenant = "$tenant" } $token = Invoke-RestMethod -uri $tokenendpoint -Body $Body -Method Post $token.access_token $QueryUrl = 'graph.microsoft.com/beta/users//messages' $ma = Invoke-RestMethod -Headers @{Authorization = "Bearer $($token.access_token)"} -Uri $QueryUrl -Method Get $mail = $ma.value This script is using client credential flow, also replace the value of client id and client secret with your app, and also make sure you update $queryurl

  • @nickbrights9436

    @nickbrights9436

    3 жыл бұрын

    @@ConceptsWork thanks, yes permissions can be configured - but does MS graph allows us to download an entire outlook email message in ".msg" format ? How to confirm it does / how to query a message and when found download the .msg file for that message ?

  • @nickbrights9436

    @nickbrights9436

    3 жыл бұрын

    thats the question.

  • @sundaravadivelmohanan
    @sundaravadivelmohanan Жыл бұрын

    i have an azure function, when i add authentication via Microsoft , chose the first option to create an app with default selections from rest of the control works, but if delete the mapping and re map the same app to the same azure function app in authentication , its not working. what could be the problem

  • @ConceptsWork

    @ConceptsWork

    Жыл бұрын

    Are your providing all the details like client id and secret.

  • @ankitaggarwal7906
    @ankitaggarwal7906 Жыл бұрын

    How to login to mailbox using client and secret key using java code..

  • @itsdd9873
    @itsdd98734 жыл бұрын

    In End of this video you have Retrieved users are those users from Auzre-AD or from application it self ?

  • @ConceptsWork

    @ConceptsWork

    4 жыл бұрын

    Azure AD.

  • @itsdd9873
    @itsdd98734 жыл бұрын

    Is the script posted on Community ?

  • @ConceptsWork

    @ConceptsWork

    4 жыл бұрын

    Yes

  • @Deekudla

    @Deekudla

    3 жыл бұрын

    @@ConceptsWork Kindly provide the link for community

  • @vibhormathpal2021
    @vibhormathpal20213 жыл бұрын

    Please share the script

  • @ConceptsWork

    @ConceptsWork

    3 жыл бұрын

    Which Script ?

  • @_shivanithakur

    @_shivanithakur

    2 жыл бұрын

    @@ConceptsWorkat 26:35

  • @edemfromeden5432

    @edemfromeden5432

    Жыл бұрын

    @Concepts Work Sir, requesting you to kindly share for the same. TY

  • @honeymon9085

    @honeymon9085

    7 ай бұрын

    Could you please share the script which is used to test application.

Келесі