我的以下功能有问题:
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
sportid, @"sport",
country, SC_PAIS,
team, SC_TEAM,
token, SC_TOKEN,nil];
[[SCHTTPClientServer sharedClient] setParameterEncoding:AFJSONParameterEncoding];
[[SCHTTPClientServer sharedClient] putPath:@"calendarelemfilters/teams" parameters:params success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"RESPonsee %@",responseObject);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"ERROR %@",[error localizedDescription]);
}];
这是我的代码。我有以下错误 - 我该如何解决?
谢谢
"""响应字符串:<>Apache Tomcat/7.0.26 - 错误报告
HTTP 状态 400 - 所需的字符串参数“令牌”不存在
类型状态报告
消息必需的字符串参数“令牌”不存在
描述客户端发送的请求在语法上不正确(必需的字符串参数“令牌”不存在)。