-
-
Notifications
You must be signed in to change notification settings - Fork 206
Fix User objects not saving, Add support for Parse Files, Anonymous Login #67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
helps with #36 |
Very Good: login anonymously |
Hi @klanmiko, are you sure parse files works ? Because I tested with a new "picture" column with png file. And when I print the payload, I have this sample:
|
Amazing work. I'm happy to merge and will test tonight to ensure the file upload is working correctly. Thanks! |
Thanks @phillwiggins! Thanks for making this library. @scaneat yes it works. The reason you see that is because the parse_encoder.dart encodes the object as a pointer and not a file. I think it is done this way for a specific reason...? to send to the server? Otherwise the print statements for the ParseUser and ParseFile, ParseGeo should be before that |
Edit: Nice, reading Parse Files works! |
Hi Guys, |
@klanmiko You added support for anon login, which is great! 😊 However, I wonder how to check if the Thanks in advance! |
@phranck you can check if
Edit: you have to use user.get<>() wait to get the userData object. |
Fix User objects not saving, Add support for Parse Files, Anonymous Login
Hi Phil,
I am using your sdk to develop an application for our hackathon participants. I ran over a few issues that I fixed and I thought it woud be a good idea to contribute back to this project. Here are my changes:
Let me know if these need work