
Hi there,
I have a problem with setting up OAuth.
I followed the documentation to set up OAuth for GitHub and Google. I used this documentation to set it up in GitHub.
The code in the end looks like this:
// file: client.dart
Client client = Client()
.setEndpoint('https://cloud.appwrite.io/v1')
.setProject(dotenv.get('PROJECT_ID'))
.setSelfSigned(
status: true,
);
// file: account.dart
final Account account = Account(client);
// file: login_form.dart
// - Inside a button callback:
await account.createOAuth2Session(
provider: 'github',
);
The PROJECT_ID
is set, the connection is working in other areas.
With or without "self signed" does not change the result.
I am using my smartphone to run the code.

What's your project id?

Can you check what's the exact url on this page?
Recommended threads
- Upload file
i got this error when try upload file (.Net). I use this line to check my buucket and its all right var buckets = await appWriterInit.Storage.List...
- Auth Error
"use client"; import { useEffect } from "react"; import { getSessionCookie } from "@/actions/auth"; import { createBrowserSessionClient } from "@/lib/appwrite-...
- Prevent modifying specific attributes
How do I prevent user to only to be able to modify some of the attributes. Document level security gives full access to update whole document, what are the wor...
