i am sending an object to this adrees : https://sandbox.itunes.apple.com/verifyReceipt
with NSUrlconnection
and i am trying to read it with this delegate method :
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
like this :
NSlog(@"%@",response);
i am getting this code :
<NSHTTPURLResponse: 0x7d2c6c0>
i need to get a string somehow.
how can i read it?
I wrote this answer to another question, but I think it will help you. Have a look in particular at the methods
-(void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
and
-(void) connectionDidFinishLoading:(NSURLConnection *)connection
-(void) requestPage
{
NSString *urlString = @"http://the.page.you.want.com";
NSURL *url = [NSURL URLWithString:urlString];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLCacheStorageAllowed timeoutInterval:20.0f];
responseData = [[NSMutableData alloc] init];
connection = [[NSURLConnection connectionWithRequest:request delegate:self] retain];
delegate = target;
}
-(void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
if ([response isKindOfClass:[NSHTTPURLResponse class]])
{
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse*) response;
//If you need the response, you can use it here
}
}
-(void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[responseData appendData:data];
}
-(void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
[responseData release];
[connection release];
}
-(void) connectionDidFinishLoading:(NSURLConnection *)connection
{
if (connection == adCheckConnection)
{
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
//You've got all the data now
//Do something with your response string
[responseString release];
}
[responseData release];
[connection release];
}
NSHTTPURLResponse * httpResponse = (NSHTTPURLResponse *) response;
int errorCode = httpResponse.statusCode;
NSString *fileMIMEType = [[httpResponse MIMEType] lowercaseString];
For more information, check iOS Docs : NSHTTPURLResponse
.
And be patient: not all connections return NSHTTPURLResponse
If you expect that the connection is receiving some data you can use.
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
you can then simply convert data to NSString
.
You can create a subclass and override the - (NSString*) description
method.