我是iOS开发的新手。
我正在使用以下代码向服务器发送请求并同步获取响应。
我的请求包含JSON对象。当我在模拟器上运行时,我收到错误“错误的URL”。
请帮我解决这个问题。
NSString *regUrlWithJson = @"https://dso.mpl.com/reg?json={\"operation\":\"login\",\"contactEmail\":\"abc@rt.com\",\"password\":\"e3dba1bbfab020a2eb105c69405a7766\",\"SSO\":\"true\",\"service\":\"lp\",\"sig\":\"true\",\"url\":\"mpl\"}";
NSLog(regUrlWithJson);
NSURLRequest * urlRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:regUrlWithJson]];
NSURLResponse * response = nil;
NSData * data = [NSURLConnection sendSynchronousRequest:urlRequest
returningResponse:&response
error:&error];
if (error != nil)
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Login" message:[error localizedDescription] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
}
else{
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Login" message:string delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
}
谢谢,
答案 0 :(得分:0)
regUrlWithJson
不是有效的网址。这就是原因