Why did you checked "implicit flow" and "hybrid flow"??? While you are implement pkce implemention for authorisation code flow, you shouldn't check these checkbox. Also it is mentioned above of the that options.
@azureteachnet2 ай бұрын
Good catch. I usually check that implicit flow just to make my life easier while making the video. As I used to it, Un Intentionally checked that.
@amanraut53045 ай бұрын
Please make a video on federated crentaial in azure
@sandeshpekamwar8 ай бұрын
Pls create on multi tenant entra with angular and dotnet core api
@sandeshpekamwar8 ай бұрын
Along with graph How to contact u
@azureteachnet8 ай бұрын
I have a plan to create these videos in next 1-3 months as lil busy. 1. Web Api+Entra+Azure AD B2C 2. Web Api+Multi Tenant Entra 3. Angular for the same. Will update you. Thanks.
@bandasanthosh3 ай бұрын
How do we get logged in user email using this method
@azureteachnet3 ай бұрын
you can decode the token. It will have the email in claims.
@bandasanthosh3 ай бұрын
@@azureteachnet do you have any video on how to decode them or any other resource where I can refer to?
@azureteachnet3 ай бұрын
@@bandasanthosh do you mean the token? Token can be decoded using Base64. You can use http client to forward the token. There are many other ways present to achive that.
@bandasanthosh3 ай бұрын
@@azureteachnet Sorry for asking multiple times.. do you have some reference guide for end to end process?
@azureteachnet2 ай бұрын
@@bandasanthosh still I did not understand what you are looking for. can you please elaborate your requirement? If you are looking for authentication and authorization, the channel have a playlist which has at least 10 videos. If you want to pass token from one api to other here is the video. kzbin.info/www/bejne/oKfCp5xnfJuYfaM if you use the same audience for both APIs, you can simply pass the token as is. To get the token in your API, you can Enable Token Aquisation or write your own middleware to get the token and pass it.