Using Deno sdk. Looking to auth a user using the SDK due to using another means for authentication.
TypeScript
const res = await Account.createEmailPasswordSession(userEmail, '12345678');
const actRec = await Account.createSession(res.userId, res.secret);```
Error response ```
AppwriteException {
message: "Invalid `secret` param: Value must be a valid string and at least 1 chars and no longer than 256 cha"... 2 more characters,
code: 400,
It was working but randomly started showing this message. Any ideas?
TL;DR
Title: `invalid secret param` error when authing through Deno SDK
Developers are receiving an "invalid secret param" error when trying to authenticate a user using the Deno SDK. The SDK code snippet provided needs to be revisited. It seems the `secret` value is not being properly generated or passed. The error message indicates that the `secret` value must be a valid string between 1 and 256 characters. Double-check how the `secret` value is being handled or generated before creating the session to resolve this issue.Recommended threads
- 1:1 relationship doesn’t sync after re-a...
Hi, I’m trying to use a two-way one-to-one relationship. It works fine when I create a record with the relationship set, and it also works when I unset it. But ...
- Upsert with setting permissions
Hi there, I am using self-hosted appwrite v1.7.4 and trying to use the bulk update stuff that was released with 1.7.x. Unfortunally I found that there is an ser...
- Github connection error - Self Hosted Ap...
I am trying to connect my github account to deploy a project to sites, but Connect to Gtihub button is disabled. I have configured all Env variables needed for...