IOS पर HTTP POST अनुरोध भेजना


86

मैं iOS एप्लिकेशन के साथ एक HTTP पोस्ट भेजने की कोशिश कर रहा हूं जो मैं विकसित कर रहा हूं, लेकिन पुश सर्वर पर कभी नहीं पहुंचता है हालांकि मुझे प्रतिक्रिया (urlconnection से) के रूप में एक कोड 200 मिलता है। मुझे सर्वर से कभी कोई प्रतिक्रिया नहीं मिलती है और न ही सर्वर मेरी पोस्ट का पता लगाता है (सर्वर एंड्रॉइड से आने वाले पोस्ट का पता लगाता है)

मैं ARC का उपयोग करता हूं, लेकिन पीडी और 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 *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES]; 

आपको अपने डेटा की वास्तविक लंबाई भेजने की आवश्यकता है। पोस्ट स्ट्रिंग की लंबाई की गणना करें।

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

3.HTTP पोस्ट स्ट्रिंग की लंबाई के साथ विधि, http हेडर फ़ील्ड जैसे सभी गुणों के साथ एक Urlrequest बनाएं । 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"];

HTTPBodyPostData के साथ urlrequest का सेट करें ।

[request setHTTPBody:postData];

4. अब, URLConnection ऑब्जेक्ट बनाएं। URLRequest के साथ इसे प्रारंभ करें।

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

यह आरंभिक url कनेक्शन लौटाता है और url अनुरोध के लिए डेटा लोड करना शुरू करता है। आप देख सकते हैं कि आप है कि क्या URLकनेक्शन ठीक है या नहीं बस का उपयोग किया जाता है, तो / किसी और नीचे के रूप में बयान।

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

5. HTTP अनुरोध से डेटा प्राप्त करने के लिए, आप URLConnection Class संदर्भ द्वारा प्रदत्त प्रतिनिधि विधियों का उपयोग कर सकते हैं। प्रतिनिधि विधियाँ नीचे दी गई हैं।

// 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' क्यों मिला।
जेले

"Nsurlconnection कैश पॉलिसी" के लिए stackoverflow.com/questions/405151/… और / या google के स्वीकृत उत्तर की जाँच करें
Jelle

1
भले ही उत्तर को कई बार स्वीकार किया गया हो, लेकिन इस उत्तर में दिए गए कोड में कई चकाचौंध वाले मुद्दे हैं, और व्यवहार में परेशानी होगी।
काउचडॉलर

1
@iPatel लेकिन क्या हम ऊपर दिए गए पोस्ट विधि कोड का उपयोग करके छवि डेटा भेज सकते हैं।
iहलक

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 से, जब तक आप कुछ डाउनलोड जानकारी नहीं चाहते।


मैं डाउनलोड जानकारी चाहता हूँ यही कारण है कि मेरे पास फ़ंक्शन
कनेक्शनडीडफ़िनिश डाउनलोडिंग

1
जाहिरा तौर पर NSURLConnectionDownloadDelegate केवल न्यूज़स्टैंड ऐप्स में काम करता है .... कम से कम यही है कि यह धागा क्या कहता है: stackoverflow.com/questions/6735121/…
nickygerritsen

2

मैं अपनी लॉगिंग लाइब्रेरी में जिस विधि का उपयोग करता हूं, वह है: https://github.com/goktugyil/QorumLogs

यह तरीका Google फ़ॉर्म के अंदर HTML फॉर्म भरता है। आशा है कि यह स्विफ्ट का उपयोग करने में किसी की मदद करे।

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

IOS (उद्देश्य c) पर HTTP POST अनुरोध भेजना:

-(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 @DaanLuttik
Ronny

1

स्विफ्ट 3 या 4 का उपयोग करके आप गंभीर संचार के लिए इन http अनुरोध का उपयोग कर सकते हैं।

// पोस्ट डेटा के लिए अनुरोध करने के लिए

 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

उद्देश्य सी

पोस्ट एपीआई मापदंडों के साथ और यूआरएल के साथ मान्य करने के लिए नेविगेट अगर
स्थिति के साथ प्रतिक्रिया कुंजी: "सफलता"

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 प्रतिक्रिया : {"स्थिति": "सफलता", "user_id": "58", "user_name": "dilip", "परिणाम": "आप सफलतापूर्वक लॉग इन कर चुके हैं"} कार्य कोड

**

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.