nsurlsession 的post 方法1

//1.构造URL

NSURL *url = [NSURL URLWithString:@"https://api.weibo.com/2/statuses/update.json"];


//2.构造Request

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];


//(1)设置为POST请求

[request setHTTPMethod:@"POST"];


//(2)超时

[request setTimeoutInterval:60];


//(3)设置请求头

//[request setAllHTTPHeaderFields:nil];


//(4)设置请求体

//发新浪微博

//请求体里需要包含至少两个参数

//指定用户的令牌 微博正文

//access_token status

//这里的 access_token 大家可以用自己的微博来测试 access_token->是通过自己的微博账号密码生成的 具体流程可以参照 http://www.cnblogs.com/ok-lanyan/archive/2012/07/15/2592070.html

NSString *bodyStr = @"access_token=xxxxx&status=微博内容";

NSData *bodyData = [bodyStr dataUsingEncoding:NSUTF8StringEncoding];

//设置请求体

[request setHTTPBody:bodyData];




//3.构造Session

NSURLSession *session = [NSURLSession sharedSession];


//4.task

NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {

NSLog(@"response : %@", response);

}];


//5.

[task resume];

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值