如何使用NSURLSession

时间:2016-02-22 07:24:13

标签: ios objective-c nsurlsession

我正在使用NSURLSession来整合服务

当我向服务器下面发送请求时,"首先请求"来自服务器的合成响应

当我发送"第二个请求"甲酸盐响应不是来自服务器

我在下面做了什么错误"第二次请求"格式请帮帮我

NSString *usernameString = usernameTxt.text;
NSString *passwordString = passwordTxt.text;
NSString *Grant_type = @"password";
NSString *Finalstr = [NSString stringWithFormat: @"%@UserName%@Password%@grant_type", usernameString,passwordString,Grant_type];

NSString * finalString = @"UserName=10122951&Password=123456&grant_type=password";

第一次请求:

[post5 postServieCalling:@"%@myURl here" : finalString];

第二次请求:

[post5 postServieCalling:@"%@myURl here" : Finalstr];

1 个答案:

答案 0 :(得分:1)

json

替换为以下代码。

NSString *Finalstr = [NSString stringWithFormat: @"%@UserName%@Password%@grant_type", usernameString,passwordString,Grant_type];