We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
source code in bmob_user.dart
//Map转String //发送请求 Map result = await BmobDio.getInstance().put( Bmob.BMOB_API_REQUEST_UPDATE_USER_PASSWORD + objectId, data: getParamsJsonFromParamsMap(data));
the 'Bmob.BMOB_API_REQUEST_UPDATE_USER_PASSWORD' is
static const String BMOB_API_REQUEST_UPDATE_USER_PASSWORD = BMOB_API_VERSION + "/updateUserPassword";
the 'Bmob.BMOB_API_REQUEST_UPDATE_USER_PASSWORD' should be
static const String BMOB_API_REQUEST_UPDATE_USER_PASSWORD = BMOB_API_VERSION + "/updateUserPassword/";
The text was updated successfully, but these errors were encountered:
No branches or pull requests
source code in bmob_user.dart
//Map转String
//发送请求
Map result = await BmobDio.getInstance().put(
Bmob.BMOB_API_REQUEST_UPDATE_USER_PASSWORD +
objectId,
data: getParamsJsonFromParamsMap(data));
the 'Bmob.BMOB_API_REQUEST_UPDATE_USER_PASSWORD' is
static const String BMOB_API_REQUEST_UPDATE_USER_PASSWORD = BMOB_API_VERSION + "/updateUserPassword";
the 'Bmob.BMOB_API_REQUEST_UPDATE_USER_PASSWORD' should be
static const String BMOB_API_REQUEST_UPDATE_USER_PASSWORD = BMOB_API_VERSION + "/updateUserPassword/";
The text was updated successfully, but these errors were encountered: