blob: e40127f2c53e3dbe9a12bcc1985d85e33c0753cc (
plain)
1
2
3
4
5
6
7
8
9
10
|
export function performTokenSignIn(token) {
const apiUrl = window.$$env['API_BASE_URL'] || ''
return fetch(`${apiUrl}/tokensignin`, {
method: 'POST',
body: new URLSearchParams({
idtoken: token,
}),
}).then((res) => res.json())
}
|