How to make user return on login page after sign-up in Azure AD B2C?

后端 未结 1 1202
甜味超标
甜味超标 2021-01-27 20:34

When a user is signing-up in the system, he is automatically redirected to our application as a signed in user. I would like that after the sign-up, he is redirected to the sign

1条回答
  •  忘了有多久
    2021-01-27 21:00

    Below are the configuration you can do:

    Claim Type (To Print the Message from B2C Side)

    
            
            string
            Paragraph
        
    

    ClaimsTransformation

    
            
                
            
            
                
            
        
    

    Technical Profile:

    
          After Registration
          
          
            api.selfasserted
            
            false
            false
          
          
            
          
          
             
          
          
            
            
          
          
        
    

    User Journey:

    
          
            
          
        
        
        
            
              extension_isApproved
              SkipThisOrchestrationStep
            
             
              extension_isApproved
              True
              SkipThisOrchestrationStep
            
          
          
            
          
        
        
        
    

    Note: Make Sure in the "AAD-UserReadUsingObjectId" you add the below claim:

    
    

    Also in the "SelfAsserted-UserMessage" Profile, in the content definition you can have custom page which will have the link of your Login Page. Below is the screenshot of how it appears by default.

    0 讨论(0)
提交回复
热议问题