有人知道如何在单击“发送密码恢复”时检索访问令牌吗? redirect_url 看起来像这样:
http://localhost:5173/#access_token=eyJhbG...&token_type=bearer&type=recovery
并且由于 #
,无法访问服务器端的参数。
有任何想法吗?
我正在使用 sveltekit。
您必须附加一个?在 GET 参数之前,因为当前请求实际上是在声明您要访问的 URL 哈希是 access_token,而不是 GET 参数。
像这样:
http://localhost:5173/?access_token=eyJhbG...&token_type=bearer&type=recovery