2016-11-08 8 views
-1

JSON形式のデータをあるAPIエンドポイントからHTTP GETリクエストし、別のAPIエンドポイントにPOSTする方法API内のJSONでHTTP GETを取得する

+1

(無効)のGetRequest {

//Init the NSURLSession with a configuration NSURLSessionConfiguration *defaultConfigObject = [NSURLSessionConfiguration defaultSessionConfiguration]; NSURLSession *defaultSession = [NSURLSession sessionWithConfiguration: defaultConfigObject delegate: nil delegateQueue: [NSOperationQueue mainQueue]]; //Create an URLRequest NSURL *url = [NSURL URLWithString:@"Your URL"]; NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url]; [urlRequest setHTTPMethod:@"GET"]; [urlRequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"]; //Create task NSURLSessionDataTask *dataTask = [defaultSession dataTaskWithRequest:urlRequest completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) { //Handle your response here // NSLog(@"resultsDictionary is %@",response); }]; [dataTask resume]; 

} .. – ted

+0

[質問する](http://stackoverflow.com/help/how-to-ask)を確認し、[最小限の完全で検証可能な例]を提供することを検討してください(http://stackoverflow.com/help/mcve ) – David

+0

あなたのコードを提供するか、これまでに試したことを説明してください – captainsac

答えて

-1

- あなたはそれ以外のご質問が広すぎているため、削除鉱石を無視することができるコミュニティからの助けをしたい場合は、あなたがしようとしたコードが含まれている必要があり

関連する問題