👽 Update API path

This commit is contained in:
2025-12-19 22:16:48 +08:00
parent 7170a6214b
commit 6b46616de4
10 changed files with 20 additions and 20 deletions

View File

@@ -37,7 +37,7 @@ const requestedScopes = computed(() => {
async function fetchClientInfo() {
try {
const queryString = window.location.search.slice(1)
clientInfo.value = await api(`/id/auth/open/authorize?${queryString}`)
clientInfo.value = await api(`/pass/auth/open/authorize?${queryString}`)
checkIfNewApp()
} catch (err) {
message.error(err instanceof Error ? err.message : String(err))
@@ -56,7 +56,7 @@ async function handleAuthorize(authorize = true) {
isAuthorizing.value = true
try {
const data = await api<{ redirectUri?: string }>(
"/id/auth/open/authorize",
"/pass/auth/open/authorize",
{
method: "POST",
body: new URLSearchParams({

View File

@@ -27,7 +27,7 @@ definePageMeta({
})
onMounted(() => {
const redirectUrl = `${apiBase}/id/auth/callback/${provider}${window.location.search}`
const redirectUrl = `${apiBase}/pass/auth/callback/${provider}${window.location.search}`
window.location.href = redirectUrl
})
</script>

View File

@@ -361,7 +361,7 @@ async function handleCreateAccount() {
isLoading.value = true
try {
await api("/id/accounts", {
await api("/pass/accounts", {
method: "POST",
body: {
name: formModel.name,

View File

@@ -54,7 +54,7 @@ async function handleFindAccount() {
isLoading.value = true
try {
challenge.value = await api("/id/auth/challenge", {
challenge.value = await api("/pass/auth/challenge", {
method: "POST",
body: {
platform: 1,
@@ -78,7 +78,7 @@ async function getFactors() {
isLoading.value = true
try {
const availableFactors = await api<SnAuthFactor[]>(
`/id/auth/challenge/${challenge.value.id}/factors`
`/pass/auth/challenge/${challenge.value.id}/factors`
)
factors.value = availableFactors.filter(
(f: SnAuthFactor) => !challenge.value!.blacklistFactors.includes(f.id)
@@ -105,7 +105,7 @@ async function requestVerificationCode() {
try {
await api(
`/id/auth/challenge/${challenge.value.id}/factors/${selectedFactorId.value}`,
`/pass/auth/challenge/${challenge.value.id}/factors/${selectedFactorId.value}`,
{ method: "POST" }
)
} catch (e: unknown) {
@@ -150,7 +150,7 @@ async function handleVerifyFactor() {
isLoading.value = true
try {
challenge.value = await api(`/id/auth/challenge/${challenge.value.id}`, {
challenge.value = await api(`/pass/auth/challenge/${challenge.value.id}`, {
method: "PATCH",
body: {
factor_id: selectedFactorId.value,
@@ -181,7 +181,7 @@ async function exchangeToken() {
isLoading.value = true
try {
// The token endpoint gives the Set-Cookie header
await api<{ token: string }>("/id/auth/token", {
await api<{ token: string }>("/pass/auth/token", {
method: "POST",
body: {
grant_type: "authorization_code",