-
-
Notifications
You must be signed in to change notification settings - Fork 206
sdk error: login function fails #109
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
Comments
Will add in the next release. Thanks for pointing this out. |
This has been fixed in 1.0.16. This is currently waiting to be released but will be done shortly. |
the same problem is in query() method of QueryBuilder class, thanks |
Hey,
This should be resolved on version 1.0.16. The query function is part of
the ParseObject class. Are you working from the latest release or from the
latest branch on GitHub?
Thanks
…On Tue, 19 Mar 2019 at 08:27, sabawoon-baryal ***@***.***> wrote:
the same problem is in query() method of QueryBuilder class, thanks
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#109 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AHgn3i4pHGW2j7I8Z_MmQmgZLYFwO100ks5vYJ-MgaJpZM4bmrq4>
.
--
Kind Regards
Phill Wiggins
[email protected]
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
login function generate Url without port number. because of that the login attempt fails
here is the sdk code:
`Future login() async {
try {
Uri tempUri = Uri.parse(_client.data.serverUrl);
}`
here is the refactored code:
`Future login() async {
try {
Uri tempUri = Uri.parse(_client.data.serverUrl);
}`
add
port: tempUri.port
to parse_server_sdk-1.0.15/lib/src/objects/parse_user.dart [160]The text was updated successfully, but these errors were encountered: