azure-saas icon indicating copy to clipboard operation
azure-saas copied to clipboard

Signup Error: AADB2C90068: The provided application with ID 'xxx' is not valid against this service.

Open jhofer opened this issue 1 year ago • 9 comments

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

  1. 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
  1. Commit and Deploy gitworkflow changes
  2. Run all Gitworkflows
  3. Open signupadmin or saas-app webapp
  4. Click on Sign Up / Sign In ==> Error

Expected behavior

  • User should be abel to Sign Up or Login

Screenshots image

Desktop (please complete the following information):

  • OS: Windows .
  • Browser Edge

jhofer avatar May 28 '24 05:05 jhofer