gpt4 book ai didi

ios 在 Quickblox 中更新时无法处理的实体

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:18:01 24 4
gpt4 key购买 nike

我正在开发一个聊天应用程序,我已经为聊天添加了 Quickblox 框架,但是当用户更新时出现以下错误:

Request URL:https://api.quickblox.com/users/12345.json?user%5Bemail%5D=abc%40gmail.com&user%5Bfull_name%5D=abc%xyz&user%5Blogin%5D=1234567890&user%5Bpassword%5D=abcdefghij&user%5Bphone%5D=1234567890

Request method: PUT

Request headers: { "Content-Type" = "application/json"; "QB-SDK" = "iOS 2.0.12"; "QB-Token" = b9a57f30857d7591d6766dac7345d78bc1c9f588; "QuickBlox-REST-API-Version" = "0.1.1"; } Request parameters:{ user = { email = "abc@gmail.com"; "full_name" = "abc xyz"; login = 1234567890; password = abcdefghij; phone = 1234567890; }; }

Request headers: { "Content-Type" = "application/json"; "QB-SDK" = "iOS 2.0.12"; "QB-Token" = b9a57f30857d7591d6766dac7345d78bc1c9f588; "QuickBlox-REST-API-Version" = "0.1.1"; }

Response headers: { "Access-Control-Allow-Origin" = "*"; "Cache-Control" = "no-cache"; Connection = "keep-alive"; "Content-Type" = "application/json; charset=utf-8"; Date = "Sun, 01 Feb 2015 18:59:19 GMT"; "QB-Token-ExpirationDate" = "2015-02-01 20:57:39 UTC"; "QuickBlox-REST-API-Version" = "0.1.1"; Server = "nginx/1.0.15"; Status = "422 Unprocessable Entity"; "Transfer-Encoding" = Identity; "X-Rack-Cache" = "invalidate, pass"; "X-Request-Id" = 17331b69e1b7a38d8545629e241733c8; "X-Runtime" = "0.013145"; "X-UA-Compatible" = "IE=Edge,chrome=1"; }

我使用了以下代码...

    if (firstName.length > 0 || lastName.length > 0 || email.length > 0 || mobileNo.length > 0 || country.length > 0) {

QBUUser *user = [QBUUser user];
AppUser *AppUser = [AppUser user];
user.ID = AppUser.ID;
user.login = AppUser.login;
user.password = AppUser.password;
user.fullName = [NSString stringWithFormat:@"%@ %@",firstName,lastName];
user.email = email;
user.phone = mobileNo;

[QBRequest updateUser:user
successBlock:^(QBResponse *response, QBUUser *user) {

AppUser *AppUser = [AppUser user];
AppUser.country = country;

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Information" message:@"Profile updated successfully." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];

} errorBlock:^(QBResponse *response) {

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Error while updating." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];

}];
} else {

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Information" message:@"Fields can't be empty." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
}

最佳答案

首先尝试通过删除(或注释掉)上面的一个字段来更新用户对象,直到找到有问题的属性。您一次更新了这么多,以至于您不知道是哪一个导致了问题。

我怀疑登录属性是来源,因为我相信它是在注册时设置和固定的,因此之后无法更新。

关于ios 在 Quickblox 中更新时无法处理的实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28267386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com