I use Convex and Appwrite for my projects, and to solve the authorization problem, I decided to connect Logto as a single authorization center for all projects and subprojects. But it is when configuring Appwrite using Logto that I get the OpenID error, who in practice has encountered such an error? How can this be solved?
{ "code": "oidc.invalid_redirect_uri", "message": "redirect_uri did not match any of the client's registered redirect_uris.", "error": "invalid_redirect_uri", "error_description": "redirect_uri did not match any of the client's registered redirect_uris", "state": "{"success":"http:localhost:3000auth","failure":"http:localhost:3000","token":false}", "iss": "http://localhost:3001/oidc" }
Recommended threads
- Queries
Is there some difference if I do this: const promise = databases.listDocuments( database, collection, [ Query.equal('userId',...
- Appwrite Function's URL cannot be reache...
Hello, guys. I am running Appwrite on my domain appwrite.example.com. It is listening to 2780 and 27443 for HTTP & HTTPS respectively. On the same server, I ha...
- I created paswordless auth (Email OTP). ...
```Typescript export async function getUser() { try { const { account } = await createSessionClient(); return await account.get(); } ca...