We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31af6d8 commit 42453c1Copy full SHA for 42453c1
articles/static-apps/user-information.md
@@ -49,7 +49,7 @@ Using the [fetch](https://developer.mozilla.org/docs/Web/API/Fetch_API/Using_Fet
49
50
```javascript
51
async function getUserInfo() {
52
- const response = await fetch("/api/user");
+ const response = await fetch("/.auth/me");
53
const payload = await response.json();
54
const { clientPrincipal } = payload;
55
return clientPrincipal;
0 commit comments