azure-saas
azure-saas copied to clipboard
Signup Error: AADB2C90068: The provided application with ID 'xxx' is not valid against this service.
Describe the bug After successfully deploy the application I'm not abel to signup or login. I checked the app registrations and they are created in correclty in in the azure b2c tenant
To Reproduce Steps to reproduce the behavior: 0. Fork Repo
- Fresh Deployment of all Components
echo "Start of setup.sh"
# get script directory
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
# create array of folder names
echo
read -p "run Saas.IdentityProvider" -n 1 -r CONTINUE_SCRIPT
if [[ $CONTINUE_SCRIPT =~ ^[Yy]$ ]]; then
targetDir="${SCRIPT_DIR}/src/Saas.Identity/Saas.IdentityProvider/deployment"
echo "dir ${targetDir}"
cd $targetDir
# run setup script
./setup.sh
./run.sh
fi
echo
read -p "run Saas.Permissions" -n 1 -r CONTINUE_SCRIPT
if [[ $CONTINUE_SCRIPT =~ ^[Yy]$ ]]; then
targetDir="${SCRIPT_DIR}/src/Saas.Identity/Saas.Permissions/deployment"
echo "dir ${targetDir}"
cd $targetDir
# run setup script
./setup.sh
./run.sh
fi
echo
read -p "run Saas.Admin" -n 1 -r CONTINUE_SCRIPT
if [[ $CONTINUE_SCRIPT =~ ^[Yy]$ ]]; then
targetDir="${SCRIPT_DIR}/src/Saas.Admin/deployment"
echo "dir ${targetDir}"
cd $targetDir
# run setup script
./setup.sh
./run.sh
fi
echo
read -p "run Saas.SignupAdministration" -n 1 -r CONTINUE_SCRIPT
if [[ $CONTINUE_SCRIPT =~ ^[Yy]$ ]]; then
targetDir="${SCRIPT_DIR}/src/Saas.SignupAdministration/deployment"
echo "dir ${targetDir}"
cd $targetDir
# run setup script
./setup.sh
./run.sh
fi
echo
read -p "run Saas.Application" -n 1 -r CONTINUE_SCRIPT
if [[ $CONTINUE_SCRIPT =~ ^[Yy]$ ]]; then
targetDir="${SCRIPT_DIR}/src/Saas.Application/deployment"
echo "dir ${targetDir}"
cd $targetDir
# run setup script
./setup.sh
./run.sh
fi
- Commit and Deploy gitworkflow changes
- Run all Gitworkflows
- Open signupadmin or saas-app webapp
- Click on Sign Up / Sign In ==> Error
Expected behavior
- User should be abel to Sign Up or Login
Screenshots
Desktop (please complete the following information):
- OS: Windows .
- Browser Edge