मैं कुकीज़ के साथ एक iPhone ऐप बना रहा हूं। सफ़ारी सेटिंग्स में कुकीज़ हटाना उन्हें नष्ट नहीं करता है। वे कहाँ संग्रहीत हैं? क्या उन्हें अन्य UIWebView से पढ़ना संभव है?
धन्यवाद!
जवाबों:
आपके आवेदन में [NSHTTPCookieStorage sharedHTTPCookieStorage]
कंटेनर में अपना "कुकी जार" है ।
यहां बताया गया है कि आप अपने एप्लिकेशन के कुकी जार में कुकीज़ पर एक त्वरित नज़र डाल सकते हैं:
NSHTTPCookie *cookie;
NSHTTPCookieStorage *cookieJar = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (cookie in [cookieJar cookies]) {
NSLog(@"%@", cookie);
}
फ़िल्टरिंग और हेरफेर के लिए कई तरीके उपलब्ध हैं। पर एक नजर डालें NSHTTPCookieStorage कुकीज़ तक पहुँचने के लिए प्रलेखन, और NSHTTPCookie व्यक्ति कुकी गुण तक पहुँचने के लिए प्रलेखन।
cookiesForURL
cookies
सूचक एलेक्स के लिए धन्यवाद! इसे जोड़ने के लिए मैं अपने "कुकी डम्पर" में छोड़ दूंगा जो मैंने एलेक्स के उदाहरण का उपयोग करके बनाया था। शायद यह किसी और की मदद करेगा।
- (void) dumpCookies:(NSString *)msgOrNil {
NSMutableString *cookieDescs = [[[NSMutableString alloc] init] autorelease];
NSHTTPCookie *cookie;
NSHTTPCookieStorage *cookieJar = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (cookie in [cookieJar cookies]) {
[cookieDescs appendString:[self cookieDescription:cookie]];
}
NSLog(@"------ [Cookie Dump: %@] ---------\n%@", msgOrNil, cookieDescs);
NSLog(@"----------------------------------");
}
- (NSString *) cookieDescription:(NSHTTPCookie *)cookie {
NSMutableString *cDesc = [[[NSMutableString alloc] init] autorelease];
[cDesc appendString:@"[NSHTTPCookie]\n"];
[cDesc appendFormat:@" name = %@\n", [[cookie name] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[cDesc appendFormat:@" value = %@\n", [[cookie value] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[cDesc appendFormat:@" domain = %@\n", [cookie domain]];
[cDesc appendFormat:@" path = %@\n", [cookie path]];
[cDesc appendFormat:@" expiresDate = %@\n", [cookie expiresDate]];
[cDesc appendFormat:@" sessionOnly = %d\n", [cookie isSessionOnly]];
[cDesc appendFormat:@" secure = %d\n", [cookie isSecure]];
[cDesc appendFormat:@" comment = %@\n", [cookie comment]];
[cDesc appendFormat:@" commentURL = %@\n", [cookie commentURL]];
[cDesc appendFormat:@" version = %d\n", [cookie version]];
// [cDesc appendFormat:@" portList = %@\n", [cookie portList]];
// [cDesc appendFormat:@" properties = %@\n", [cookie properties]];
return cDesc;
}
NSHTTPCookieStorage
: macdevelopertips.com/objective-c/objective-c-categories.html
एलेक्स को एक श्रेणी में रखने के बारे में एक महान विचार था। यहाँ मैंने क्या उपयोग किया है:
NSHTTPCookieStorage + Info.h
#import <Foundation/Foundation.h>
@interface NSHTTPCookieStorage (Info)
+ (NSDictionary*) describeCookies;
+ (NSDictionary *) describeCookie:(NSHTTPCookie *)cookie;
@end
NSHTTPCookieStorage.m
@implementation NSHTTPCookieStorage (Info)
+ (NSDictionary*) describeCookies {
NSMutableDictionary *descriptions = [NSMutableDictionary new];
[[[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies] enumerateObjectsUsingBlock:^(NSHTTPCookie* obj, NSUInteger idx, BOOL *stop) {
[descriptions setObject:[[self class] describeCookie:obj] forKey:[[obj name] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
}];
NSLog(@"Cookies:\n\n%@", descriptions);
return descriptions;
}
+ (NSDictionary *) describeCookie:(NSHTTPCookie *)cookie {
return @{@"value" : [[cookie value] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
@"domain" : [cookie domain] ? [cookie domain] : @"n/a",
@"path" : [cookie path] ? [cookie path] : @"n/a",
@"expiresDate" : [cookie expiresDate] ? [cookie expiresDate] : @"n/a",
@"sessionOnly" : [cookie isSessionOnly] ? @1 : @0,
@"secure" : [cookie isSecure] ? @1 : @0,
@"comment" : [cookie comment] ? [cookie comment] : @"n/a",
@"commentURL" : [cookie commentURL] ? [cookie commentURL] : @"n/a",
@"version" : @([cookie version]) };
}
@end
उत्पादन को थोड़ा और अधिक "JSON-y" बनाता है ...
, sandbox:Library->Cookies->Cookies.binarycookies
लेकिन आप .binarycookie
सीधे एस नहीं खोल सकते हैं, आप एक स्क्रिप्ट चला सकते हैं:
पायथन को डाउनलोड और इंस्टॉल करें
डाउनलोड करें बाइनरीकिएरेडरहोम
टर्मिनल पर "Python BinaryCookieReader.py" चलाएं
जैसा कि आप देख सकते हैं, आउटपुट लॉग में विस्तार कुकीज़ विवरण होता है