data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: actually pass scopes

+1 -1
+1 -1
src/routes/guestbook/+page.server.ts
··· 40 40 const params = new URLSearchParams({ author, content }) 41 41 scopedCookies.set("postData", params.toString()) 42 42 // get auth url to redirect user to 43 - const authUrl = auth.createAuthUrl(client.getAuthUrl, cookies) 43 + const authUrl = auth.createAuthUrl((state) => client.getAuthUrl(state, scopes), cookies) 44 44 redirect(303, authUrl) 45 45 } 46 46 }