File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/dart/lib/src/objects Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -216,11 +216,11 @@ class ParseUser extends ParseObject implements ParseCloneable {
216
216
keyVarPassword: password
217
217
};
218
218
final String installationId = await _getInstallationId ();
219
- final Uri url = getSanitisedUri (_client, '$keyEndPointLogin ' ,
220
- queryParams: queryParams);
219
+ final Uri url = getSanitisedUri (_client, '$keyEndPointLogin ' );
221
220
_saveChanges ();
222
- final ParseNetworkResponse response = await _client.get (
221
+ final ParseNetworkResponse response = await _client.post (
223
222
url.toString (),
223
+ data: jsonEncode (queryParams),
224
224
options: ParseNetworkOptions (headers: < String , String > {
225
225
keyHeaderRevocableSession: '1' ,
226
226
if (installationId != null && ! doNotSendInstallationID)
You can’t perform that action at this time.
0 commit comments