การส่งคำขอ HTTP POST บน iOS


86

ฉันพยายามส่งโพสต์ HTTP พร้อมกับแอปพลิเคชัน iOS ที่ฉันกำลังพัฒนา แต่การพุชไม่ถึงเซิร์ฟเวอร์แม้ว่าฉันจะได้รับรหัส 200 เป็นการตอบสนอง (จากการเชื่อมต่อ url) ฉันไม่เคยได้รับคำตอบจากเซิร์ฟเวอร์หรือเซิร์ฟเวอร์ตรวจพบโพสต์ของฉัน (เซิร์ฟเวอร์ตรวจพบโพสต์ที่มาจาก Android)

ฉันใช้ ARC แต่ตั้งค่า pd และ urlConnection ให้แข็งแกร่ง

นี่คือรหัสของฉันสำหรับส่งคำขอ

 NSMutableURLRequest *request = [[NSMutableURLRequest alloc]
                                    initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@%@",dk.baseURL,@"daantest"]]];
    [request setHTTPMethod:@"POST"];
    [request setValue:@"text/xml"
   forHTTPHeaderField:@"Content-type"];

    NSString *sendString = @"<data><item>Item 1</item><item>Item 2</item></data>";

    [request setValue:[NSString stringWithFormat:@"%d", [sendString length]] forHTTPHeaderField:@"Content-length"];

    [request setHTTPBody:[sendString dataUsingEncoding:NSUTF8StringEncoding]];
    PushDelegate *pushd = [[PushDelegate alloc] init];
    pd = pushd;
    urlConnection = [[NSURLConnection alloc] initWithRequest:request delegate:pd];
    [urlConnection start];

นี่คือรหัสของฉันสำหรับผู้รับมอบสิทธิ์

#import "PushDelegate.h"

@implementation PushDelegate
@synthesize data;

-(id) init
{
    if(self = [super init])
    {
        data = [[NSMutableData alloc]init];
        [data setLength:0];
    }
    return self;
}


- (void)connection:(NSURLConnection *)connection didWriteData:(long long)bytesWritten totalBytesWritten:(long long)totalBytesWritten
{
    NSLog(@"didwriteData push");
}
- (void)connectionDidResumeDownloading:(NSURLConnection *)connection totalBytesWritten:(long long)totalBytesWritten expectedTotalBytes:(long long)expectedTotalBytes
{
    NSLog(@"connectionDidResumeDownloading push");
}

- (void)connectionDidFinishDownloading:(NSURLConnection *)connection destinationURL:(NSURL *)destinationURL
{
    NSLog(@"didfinish push @push %@",data);
}

- (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite
{
    NSLog(@"did send body");
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    [self.data setLength:0];
    NSHTTPURLResponse *resp= (NSHTTPURLResponse *) response;
    NSLog(@"got response with status @push %d",[resp statusCode]);
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)d
{
    [self.data appendData:d];

    NSLog(@"recieved data @push %@", data);
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    NSString *responseText = [[NSString alloc] initWithData:self.data encoding:NSUTF8StringEncoding];

    NSLog(@"didfinishLoading%@",responseText);

}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
    [[[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Error ", @"")
                                message:[error localizedDescription]
                               delegate:nil
                      cancelButtonTitle:NSLocalizedString(@"OK", @"")
                      otherButtonTitles:nil] show];
    NSLog(@"failed &push");
}

// Handle basic authentication challenge if needed
- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
    NSLog(@"credentials requested");
    NSString *username = @"username";
    NSString *password = @"password";

    NSURLCredential *credential = [NSURLCredential credentialWithUser:username
                                                             password:password
                                                          persistence:NSURLCredentialPersistenceForSession];
    [[challenge sender] useCredential:credential forAuthenticationChallenge:challenge];
}

@end

คอนโซลจะพิมพ์บรรทัดต่อไปนี้และบรรทัดต่อไปนี้เท่านั้น:

2013-04-01 20:35:04.341 ApprenticeXM[3423:907] did send body
2013-04-01 20:35:04.481 ApprenticeXM[3423:907] got response with status @push 200
2013-04-01 20:35:04.484 ApprenticeXM[3423:907] didfinish push @push <>

คำตอบ:


188

รหัสต่อไปนี้อธิบายตัวอย่างง่ายๆโดยใช้POSTวิธีการ ( วิธีหนึ่งสามารถส่งผ่านข้อมูลโดยPOSTวิธีการ )

ที่นี่ฉันจะอธิบายถึงวิธีการใช้วิธี POST

1.ตั้งค่าสตริงโพสต์ด้วยชื่อผู้ใช้และรหัสผ่านจริง

NSString *post = [NSString stringWithFormat:@"Username=%@&Password=%@",@"username",@"password"]; 

2.เข้ารหัสสตริงโพสต์โดยใช้NSASCIIStringEncodingและสตริงโพสต์ที่คุณต้องส่งในรูปแบบ NSData

NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES]; 

คุณต้องส่งข้อมูลตามความยาวจริง คำนวณความยาวของสตริงโพสต์

NSString *postLength = [NSString stringWithFormat:@"%d",[postData length]]; 

3.สร้าง Urlrequest ด้วยคุณสมบัติทั้งหมดเช่นHTTPวิธีการฟิลด์ส่วนหัว http พร้อมความยาวของสตริงโพสต์ สร้างURLRequestวัตถุและเริ่มต้น

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init]; 

ตั้งค่า URL ที่คุณจะส่งข้อมูลไปยังคำขอนั้น

[request setURL:[NSURL URLWithString:@"http://www.abcde.com/xyz/login.aspx"]]; 

ตอนนี้ตั้งค่าวิธีHTTP ( POST หรือ GET ) เขียนบรรทัดนี้ตามที่อยู่ในโค้ดของคุณ

[request setHTTPMethod:@"POST"]; 

ตั้งค่าHTTPฟิลด์ส่วนหัวด้วยความยาวของข้อมูลโพสต์

[request setValue:postLength forHTTPHeaderField:@"Content-Length"]; 

ตั้งค่าเข้ารหัสสำหรับฟิลด์ส่วนหัว HTTP ด้วย

[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];

ตั้งค่าHTTPBodyurlrequest ด้วย postData

[request setHTTPBody:postData];

4.ตอนนี้สร้างวัตถุ URLConnection เริ่มต้นด้วย URLRequest

NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self]; 

ส่งคืนการเชื่อมต่อ url เริ่มต้นและเริ่มโหลดข้อมูลสำหรับคำขอ url คุณสามารถตรวจสอบได้ว่าURLการเชื่อมต่อของคุณทำได้ถูกต้องหรือไม่โดยใช้คำสั่งif / elseดังต่อไปนี้

if(conn) {
    NSLog(@"Connection Successful");
} else {
    NSLog(@"Connection could not be made");
}

5.ในการรับข้อมูลจากคำร้องขอ HTTP คุณสามารถใช้วิธีการมอบหมายที่จัดเตรียมโดย URLConnection Class Reference วิธีการมอบหมายมีดังต่อไปนี้

// This method is used to receive the data which we get using post method.
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData*)data

// This method receives the error report in case of connection is not made to server. 
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error 

// This method is used to process the data after connection has made successfully.
- (void)connectionDidFinishLoading:(NSURLConnection *)connection

นอกจากนี้ยังอ้างถึง นี้ และ นี้ เอกสารสำหรับPOSTวิธีการ

และนี่คือตัวอย่างที่ดีที่สุดพร้อมด้วยซอร์สโค้ดของHTTPPost Method


1
ตรวจสอบด้วยว่าไม่มีการแคชเกิดขึ้น นั่นจะอธิบายได้ว่าทำไมคุณถึงได้ '200' โดยที่ไม่มีอะไรเกิดขึ้นบนเซิร์ฟเวอร์
Jelle

ตรวจสอบคำตอบที่ยอมรับของstackoverflow.com/questions/405151/…และ / หรือ google สำหรับ "นโยบายแคช nsurlconnection"
Jelle

1
แม้ว่าคำตอบจะได้รับการยอมรับหลายครั้ง แต่รหัสที่ระบุในคำตอบนี้มีปัญหาที่น่าสงสัยหลายประการและจะเป็นปัญหาในทางปฏิบัติ
CouchDeveloper

1
@iPatel แต่เราสามารถส่งข้อมูลรูปภาพโดยใช้รหัสวิธีการโพสต์ที่ระบุข้างต้นได้หรือไม่
iHulk

1
ขออภัยรหัสนี้ไม่ถูกต้องและมีแนวโน้มที่จะเกิดการโจมตีด้วยการฉีด หากผู้ใช้มีอักขระ "&" ​​ในรหัสผ่านอักขระเพิ่มเติมทั้งหมดจะถูกแยกวิเคราะห์เป็นพารามิเตอร์ POST เพิ่มเติม การจัดการโดยเจตนาเป็นไปได้
ge0rg

4
-(void)sendingAnHTTPPOSTRequestOniOSWithUserEmailId: (NSString *)emailId withPassword: (NSString *)password{
//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:@"http://www.example.com/apis/login_api"];
NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url];

//Create POST Params and add it to HTTPBody
NSString *params = [NSString stringWithFormat:@"email=%@&password=%@",emailId,password];
[urlRequest setHTTPMethod:@"POST"];
[urlRequest setHTTPBody:[params dataUsingEncoding:NSUTF8StringEncoding]];

//Create task
NSURLSessionDataTask *dataTask = [defaultSession dataTaskWithRequest:urlRequest completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
    //Handle your response here
    NSDictionary *responseDict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
     NSLog(@"%@",responseDict);
}];
   [dataTask resume];
}

2

ฉันไม่แน่ใจจริงๆว่าทำไม แต่ทันทีที่ฉันแสดงความคิดเห็นวิธีการต่อไปนี้ได้ผล:

connectionDidFinishDownloading:destinationURL:

นอกจากนี้ฉันไม่คิดว่าคุณต้องการวิธีการจากโปรโตคอล NSUrlConnectionDownloadDelegate เฉพาะที่มาจาก NSURLConnectionDataDelegate เว้นแต่คุณต้องการข้อมูลการดาวน์โหลด


ฉันต้องการข้อมูลการดาวน์โหลดนั่นคือเหตุผลที่ฉันมี function connectionDidFinishDownloading: destinationURL:
Daan Luttik

1
เห็นได้ชัดว่า NSURLConnectionDownloadDelegate ใช้งานได้เฉพาะในแอป Newsstand เท่านั้น .... อย่างน้อยนั่นคือสิ่งที่เธรดนี้กล่าวว่าstackoverflow.com/questions/6735121/…
nickygerritsen

2

นี่คือวิธีที่ฉันใช้ในไลบรารีการบันทึกของฉัน: https://github.com/goktugyil/QorumLogs

วิธีนี้จะกรอกแบบฟอร์ม html ใน Google ฟอร์ม หวังว่าจะช่วยคนที่ใช้ Swift

var url = NSURL(string: urlstring)

var request = NSMutableURLRequest(URL: url!)
request.HTTPMethod = "POST"
request.setValue("application/x-www-form-urlencoded; charset=utf-8", forHTTPHeaderField: "Content-Type")
request.HTTPBody = postData.dataUsingEncoding(NSUTF8StringEncoding)
var connection = NSURLConnection(request: request, delegate: nil, startImmediately: true)

1

การส่งคำขอ HTTP POST บน iOS (Objective c):

-(NSString *)postexample{

// SEND POST
NSString *url = [NSString stringWithFormat:@"URL"];
NSString *post = [NSString stringWithFormat:@"param=value"];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d",[postData length]];


NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setHTTPMethod:@"POST"];
[request setURL:[NSURL URLWithString:url]];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];

NSError *error = nil;
NSHTTPURLResponse *responseCode = nil;

//RESPONDE DATA 
NSData *oResponseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&responseCode error:&error];

if([responseCode statusCode] != 200){
    NSLog(@"Error getting %@, HTTP status code %li", url, (long)[responseCode statusCode]);
    return nil;
}

//SEE RESPONSE DATA
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Response" message:[[NSString alloc] initWithData:oResponseData encoding:NSUTF8StringEncoding] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];

return [[NSString alloc] initWithData:oResponseData encoding:NSUTF8StringEncoding];
}

นี่เป็นเรื่องใหม่ ... รับการตอบกลับ 4 ปีหลังจากที่คุณโพสต์คำถาม: p
Daan Luttik

ฟังก์ชัน "postexample" นี้เร็วกว่าที่Response : p @DaanLuttik
Ronny Morán

1

การใช้ Swift 3 หรือ 4 คุณสามารถเข้าถึงคำขอ http เหล่านี้เพื่อตัดการสื่อสาร

// สำหรับข้อมูล POST ที่จะขอ

 func postAction()  {
//declare parameter as a dictionary which contains string as key and value combination. considering inputs are valid
let parameters = ["id": 13, "name": "jack"] as [String : Any]
//create the url with URL
let url = URL(string: "www.requestURL.php")! //change the url
//create the session object
let session = URLSession.shared
//now create the URLRequest object using the url object
var request = URLRequest(url: url)
request.httpMethod = "POST" //set http method as POST
do {
    request.httpBody = try JSONSerialization.data(withJSONObject: parameters, options: .prettyPrinted) // pass dictionary to nsdata object and set it as request body
} catch let error {
    print(error.localizedDescription)
}
request.addValue("application/json", forHTTPHeaderField: "Content-Type")
request.addValue("application/json", forHTTPHeaderField: "Accept")
//create dataTask using the session object to send data to the server
let task = session.dataTask(with: request as URLRequest, completionHandler: { data, response, error in
    guard error == nil else {
        return
    }
    guard let data = data else {
        return
    }
    do {
        //create json object from data
        if let json = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as? [String: Any] {
            print(json)
            // handle json...
        }
    } catch let error {
        print(error.localizedDescription)
    }
})
task.resume() }

// สำหรับรับข้อมูลจากคำขอ

func GetRequest()  {
    let urlString = URL(string: "http://www.requestURL.php") //change the url

    if let url = urlString {
        let task = URLSession.shared.dataTask(with: url) { (data, response, error) in
            if error != nil {
                print(error ?? "")
            } else {
                if let responceData = data {
                    print(responceData) //JSONSerialization
                    do {
                        //create json object from data
                        if let json = try JSONSerialization.jsonObject(with:responceData, options: .mutableContainers) as? [String: Any] {
                            print(json)
                            // handle json...
                        }
                    } catch let error {
                        print(error.localizedDescription)
                    }
                }
            }
        }
        task.resume()
    }
}

// สำหรับการดาวน์โหลดเนื้อหาเช่นรูปภาพหรือวิดีโอจากคำขอ

func downloadTask()  {
    // Create destination URL
    let documentsUrl:URL =  FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first as URL!
    let destinationFileUrl = documentsUrl.appendingPathComponent("downloadedFile.jpg")
    //Create URL to the source file you want to download
    let fileURL = URL(string: "http://placehold.it/120x120&text=image1")
    let sessionConfig = URLSessionConfiguration.default
    let session = URLSession(configuration: sessionConfig)
    let request = URLRequest(url:fileURL!)

    let task = session.downloadTask(with: request) { (tempLocalUrl, response, error) in
        if let tempLocalUrl = tempLocalUrl, error == nil {
            // Success
            if let statusCode = (response as? HTTPURLResponse)?.statusCode {
                print("Successfully downloaded. Status code: \(statusCode)")
            }

            do {
                try FileManager.default.copyItem(at: tempLocalUrl, to: destinationFileUrl)
            } catch (let writeError) {
                print("Error creating a file \(destinationFileUrl) : \(writeError)")
            }

        } else {
            print("Error took place while downloading a file. Error description: %@", error?.localizedDescription ?? "");
        }
    }
    task.resume()

}

1

วัตถุประสงค์ค

โพสต์ API พร้อมพารามิเตอร์และตรวจสอบความถูกต้องด้วย url เพื่อดูว่า
คีย์การตอบกลับjson ที่มีสถานะ: "success"

NSString *string= [NSString stringWithFormat:@"url?uname=%@&pass=%@&uname_submit=Login",self.txtUsername.text,self.txtPassword.text];
    NSLog(@"%@",string);
    NSURL *url = [NSURL URLWithString:string];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"POST"];
    NSURLResponse *response;
    NSError *err;
    NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&err];
    NSLog(@"responseData: %@", responseData);
    NSString *str = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
    NSLog(@"responseData: %@", str);
        NSDictionary* json = [NSJSONSerialization JSONObjectWithData:responseData
                                                         options:kNilOptions
                                                           error:nil];
    NSDictionary* latestLoans = [json objectForKey:@"status"];
    NSString *str2=[NSString stringWithFormat:@"%@", latestLoans];
    NSString *str3=@"success";
    if ([str3 isEqualToString:str2 ])
    {
        [self performSegueWithIdentifier:@"move" sender:nil];
        NSLog(@"successfully.");
    }
    else
    {
        UIAlertController *alert= [UIAlertController
                                 alertControllerWithTitle:@"Try Again"
                                 message:@"Username or Password is Incorrect."
                                 preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
                                                   handler:^(UIAlertAction * action){
                                                       [self.view endEditing:YES];
                                                   }
                             ];
        [alert addAction:ok];
        [[UIView appearanceWhenContainedIn:[UIAlertController class], nil] setTintColor:[UIColor redColor]];
        [self presentViewController:alert animated:YES completion:nil];
        [self.view endEditing:YES];
      }

การตอบสนอง JSON : {"status": "success", "user_id": "58", "user_name": "dilip", "result": "คุณเข้าสู่ระบบเรียบร้อยแล้ว"} รหัสการทำงาน

**

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.