@@ -129,7 +129,7 @@ func TestResolveRequestParams_AllQuickstartConfigs(t *testing.T) {
129129 []string {"http://localhost:3000" }, "spa" },
130130 // Regular web: framework-specific callback paths.
131131 {"regular:nextjs:none" , 3000 ,
132- []string {"http://localhost:3000/api/ auth/callback" },
132+ []string {"http://localhost:3000/auth/callback" },
133133 []string {"http://localhost:3000" }, nil , "regular_web" },
134134 {"regular:fastify:none" , 3000 ,
135135 []string {"http://localhost:3000/auth/callback" },
@@ -141,7 +141,7 @@ func TestResolveRequestParams_AllQuickstartConfigs(t *testing.T) {
141141 []string {"http://localhost:3000/callback" },
142142 []string {"http://localhost:3000" }, nil , "regular_web" },
143143 {"regular:hono:none" , 3000 ,
144- []string {"http://localhost:3000/callback" },
144+ []string {"http://localhost:3000/auth/ callback" },
145145 []string {"http://localhost:3000" }, nil , "regular_web" },
146146 {"regular:vanilla-python:none" , 3000 ,
147147 []string {"http://localhost:3000/callback" },
@@ -166,12 +166,12 @@ func TestResolveRequestParams_AllQuickstartConfigs(t *testing.T) {
166166 {"regular:vanilla-go:none" , 3000 ,
167167 []string {"http://localhost:3000/callback" },
168168 []string {"http://localhost:3000" }, nil , "regular_web" },
169- {"regular:spring-boot:maven" , 8080 ,
170- []string {"http://localhost:8080 /login/oauth2/code/oidc " },
171- []string {"http://localhost:8080 " }, nil , "regular_web" },
172- {"regular:spring-boot:gradle" , 8080 ,
173- []string {"http://localhost:8080 /login/oauth2/code/oidc " },
174- []string {"http://localhost:8080 " }, nil , "regular_web" },
169+ {"regular:spring-boot:maven" , 3000 ,
170+ []string {"http://localhost:3000 /login/oauth2/code/okta " },
171+ []string {"http://localhost:3000 " }, nil , "regular_web" },
172+ {"regular:spring-boot:gradle" , 3000 ,
173+ []string {"http://localhost:3000 /login/oauth2/code/okta " },
174+ []string {"http://localhost:3000 " }, nil , "regular_web" },
175175 {"regular:laravel:composer" , 8000 ,
176176 []string {"http://localhost:8000/callback" },
177177 []string {"http://localhost:8000" }, nil , "regular_web" },
@@ -181,15 +181,15 @@ func TestResolveRequestParams_AllQuickstartConfigs(t *testing.T) {
181181 {"regular:jhipster:none" , 8080 ,
182182 []string {"http://localhost:8080/login/oauth2/code/oidc" },
183183 []string {"http://localhost:8080" }, nil , "regular_web" },
184- {"regular:aspnet-mvc:none" , 3000 ,
185- []string {"http://localhost:3000 /callback" },
186- []string {"http://localhost:3000 " }, nil , "regular_web" },
184+ {"regular:aspnet-mvc:none" , 5000 ,
185+ []string {"http://localhost:5000 /callback" },
186+ []string {"http://localhost:5000 " }, nil , "regular_web" },
187187 {"regular:aspnet-blazor:none" , 3000 ,
188188 []string {"http://localhost:3000/callback" },
189189 []string {"http://localhost:3000" }, nil , "regular_web" },
190- {"regular:aspnet-owin:none" , 3000 ,
191- []string {"http://localhost:3000 /callback" },
192- []string {"http://localhost:3000 " }, nil , "regular_web" },
190+ {"regular:aspnet-owin:none" , 5000 ,
191+ []string {"http://localhost:5000 /callback" },
192+ []string {"http://localhost:5000 " }, nil , "regular_web" },
193193 {"regular:vanilla-php:composer" , 3000 ,
194194 []string {"http://localhost:3000/callback" },
195195 []string {"http://localhost:3000" }, nil , "regular_web" },
@@ -244,7 +244,7 @@ func TestResolveRequestParams_AllQuickstartConfigs(t *testing.T) {
244244 []string {"http://localhost:8080" },
245245 []string {"http://localhost:8080" }, "spa" },
246246 {"regular:nextjs:none" , 8080 ,
247- []string {"http://localhost:8080/api/ auth/callback" },
247+ []string {"http://localhost:8080/auth/callback" },
248248 []string {"http://localhost:8080" }, nil , "regular_web" },
249249 }
250250
@@ -476,11 +476,11 @@ func TestGenerateClient_AllQuickstartConfigs(t *testing.T) {
476476 {"spa:angular:none" , 4200 , "spa" , 1 , "http://localhost:4200" , 1 , 1 },
477477 {"spa:flutter-web:none" , 3000 , "spa" , 1 , "http://localhost:3000" , 1 , 1 },
478478 // Regular web: framework-specific paths.
479- {"regular:nextjs:none" , 3000 , "regular_web" , 1 , "http://localhost:3000/api/ auth/callback" , 1 , 0 },
479+ {"regular:nextjs:none" , 3000 , "regular_web" , 1 , "http://localhost:3000/auth/callback" , 1 , 0 },
480480 {"regular:fastify:none" , 3000 , "regular_web" , 1 , "http://localhost:3000/auth/callback" , 1 , 0 },
481481 {"regular:nuxt:none" , 3000 , "regular_web" , 1 , "http://localhost:3000/auth/callback" , 1 , 0 },
482482 {"regular:express:none" , 3000 , "regular_web" , 1 , "http://localhost:3000/callback" , 1 , 0 },
483- {"regular:hono:none" , 3000 , "regular_web" , 1 , "http://localhost:3000/callback" , 1 , 0 },
483+ {"regular:hono:none" , 3000 , "regular_web" , 1 , "http://localhost:3000/auth/ callback" , 1 , 0 },
484484 {"regular:vanilla-python:none" , 3000 , "regular_web" , 1 , "http://localhost:3000/callback" , 1 , 0 },
485485 // Flask detection sets port 5000 (Flask's historical default).
486486 {"regular:vanilla-python:none" , 5000 , "regular_web" , 1 , "http://localhost:5000/callback" , 1 , 0 },
@@ -499,8 +499,8 @@ func TestGenerateClient_AllQuickstartConfigs(t *testing.T) {
499499 {"regular:vanilla-php:composer" , 3000 , "regular_web" , 1 , "http://localhost:3000/callback" , 1 , 0 },
500500 {"regular:vanilla-java:maven" , 8080 , "regular_web" , 1 , "http://localhost:8080/callback" , 1 , 0 },
501501 {"regular:java-ee:maven" , 8080 , "regular_web" , 1 , "http://localhost:8080/callback" , 1 , 0 },
502- {"regular:spring-boot:maven" , 8080 , "regular_web" , 1 , "http://localhost:8080/login/oauth2/code/oidc " , 1 , 0 },
503- {"regular:spring-boot:gradle" , 8080 , "regular_web" , 1 , "http://localhost:8080/login/oauth2/code/oidc " , 1 , 0 },
502+ {"regular:spring-boot:maven" , 8080 , "regular_web" , 1 , "http://localhost:8080/login/oauth2/code/okta " , 1 , 0 },
503+ {"regular:spring-boot:gradle" , 8080 , "regular_web" , 1 , "http://localhost:8080/login/oauth2/code/okta " , 1 , 0 },
504504 // Native: static callback URLs appropriate per framework.
505505 // Flutter and React Native use bundle-ID-specific custom URI schemes; unknown at setup time.
506506 {"native:flutter:none" , 0 , "native" , 0 , "" , 0 , 0 },
0 commit comments