
Following code throws exception:
Client client = new Client(configuration.ApiEndPoint, false, httpClient); client.SetEndpoint(configuration.ApiEndPoint); client.SetProject(configuration.ProjectId); client.SetJWT(token);
var account = new Account(client); var user = await account.Get();
Exception:
System.NullReferenceException
HResult=0x80004003
Message=Object reference not set to an instance of an object.
Source=Appwrite
StackTrace:
at Appwrite.Models.Target.From(Dictionary2 map)
at Appwrite.Models.User.<>c.<From>b__77_0(Dictionary
2 it)
at System.Linq.Enumerable.SelectListIterator2.Fill(ReadOnlySpan
1 source, Span1 destination, Func
2 func)
at System.Linq.Enumerable.SelectListIterator2.ToList()
at Appwrite.Models.User.From(Dictionary
2 map)
at Appwrite.Services.Account.<Get>g__Convert|1_0(Dictionary2 it)
at Appwrite.Client.<Call>d__31
1.MoveNext()
Am I missing something?
Recommended threads
- transaction like functionality
As I understand it appwrite doesn't support transactions. I'm attempting to make a document in three separate collections at the same time when a user register...
- Error while login the member which is in...
Facing some error. Error logging in: Exception: No team access. Please contact your administrator. But the email/name/ new client I have created is in my tea...
- Document already existed
Hi, I am trying to add a document via cloud function using nodejs22. Everytime I do `await db.createDocument( dbid, collectionid, customDocId, data);` it will g...
