From b9e86c8fae290446709f8e1225e09da5ca266678 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikael=20West=C3=B6=C3=B6?= Date: Sat, 24 Jan 2026 23:26:57 +0100 Subject: [PATCH] Add debug output to verify endpoint call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Shows user_id and verification code before making API call to help troubleshoot 'User ID is required' errors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- deploy-to-apps.example.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deploy-to-apps.example.sh b/deploy-to-apps.example.sh index 0308e2f..3031083 100644 --- a/deploy-to-apps.example.sh +++ b/deploy-to-apps.example.sh @@ -371,6 +371,8 @@ else echo "" echo "🔐 Verifying email..." + echo " User ID: $USER_ID" + echo " Code: $VERIFY_CODE" # Verify email (public endpoint - no API key needed) VERIFY_RESPONSE=$(curl -s -X POST "${SAAC_API}/users/verify" \ @@ -431,6 +433,8 @@ if [ "$VERIFIED" != "true" ]; then echo "" echo "🔐 Verifying email..." + echo " User ID: $USER_ID" + echo " Code: $VERIFY_CODE" # Verify email (public endpoint - no API key needed) VERIFY_RESPONSE=$(curl -s -X POST "${SAAC_API}/users/verify" \