When i open iBooks, it show me a windows to login with my icloud ID. When i press enter, the windows disappears and become gray, with the name window and a spinning wheel (not when it crash, but when it's thinking/connecting). Then it comes back with the same login screen and the text An unknow error occured. When i close this window, iBooks hang and i have to force close the program.Console info:09-06-15 19:32:01,755 storeaccountd[567]: ADI: { Connection = keep-alive; Content-Length = 20; Content-Type = application/x-dmap-tagged; Date = Tue, 09 Jun 2015 17:31:59 GMT; Strict-Transport-Security = max-age=31536000; apple-timing-app = 5 ms; server-cloud-daap-version = 1.0; x-apple-application-instance = 404602; x-apple-application-site = ST11; x-apple-jingle-correlation-key = P6GIJJU424NU6YWNKOWSGTFHTI; x-webobjects-loadaverage = 0;}09-06-15 19:32:01,000 kernel[0]: Sandbox: iBooks(1543) deny(1) mach-lookup com.apple.dock.appstore09-06-15 19:32:01,763 iBooks[1543]: Could not find image named 'NSImage'.09-06-15 19
Search results for
ASWebAuthenticationSession cookie
1,295 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Apple views privacy as a human rightApp developers - be mindful of privacyKeeping the app ecosystem as a trusted place is important.Architecting for privacyData retentionData privacyData storageIdentifiersData RetentionHave a retention policyDelete data when it no longer serves a user needCollect the minimum data necessaryBalance storage of data against the risk of compromiseData Minimization TechniquesAnonymizeAggregateSampleDe-resolveDecayMinimizeWhat's the use of the data? What decisions are the collected data driving? If you can't come up with an answer, don't collect it. Minimize.Data transferEncrypt data in transitKeep sensitive data on the device, do not transmitProcess sensitive data on-deviceA good example of sensitive data - health data for a workout app. Process it on the device.On Device- Data protection- Keychain - store your secrets inside a keychain's encrypted storageServer side- Encrypt data at rest- CloudKitTransparencyBe clear about what data is being collected- Give users the ability to in
Whenever I try to enroll in the Apple Developer Program, I get redirected to an error page saying:Sorry, you can’t enroll at this time.on it. I have tried lots of things - different browsers, signing out/back in, clearing cookies, etc. and nothing works. And yes, I have tried enrolling at other times. 😁
For me it give me some error about how this Apple ID can't use this service and that I should go make a new Apple ID. (Um, no. THIS is the Apple ID for which I pay my $99/year to access the developer program…)Anyway, it seems that the Log in link In the upper-left of forum pages is broken in some way. But if you've logged into any other part of the developer site (e.g., the Member Center link in the upper-right corner) then you can get into the Forum just fine. (Until your session cookie times out and it's time to log in again.)
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Tags:
A little follow up... the original prompt to change the password may have been nafarious but the damage was all done by Apple it seems.I found apple.co in my cookies. Maybe my Apple ID has been hijacked, who knows. If it has, do they have access to all of my iCloud stored passwords?Wow.
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Tags:
I implemented payment gateway API and tested it all well. After going live with our app and after trying to input credit card details we faced issue and message that says:An error has occured processing your payment. Cookis are not turned on in your Browser.Some users have their cookies setting turned on and got the same message.Does anyone faced similar issue?Any ideas why this happens?Thanks a lot
I am using the swift extension. extension UIView { @IBInspectable var cornerRadius: CGFloat { get { return layer.cornerRadius } set { layer.cornerRadius = newValue layer.masksToBounds = newValue > 0 } } }Which is cookie cutter from several examples regarding @IBInspectable. However, when I use this in my project, the storyboard does not update while viewing in xcode, as in the link belowhttp://i.stack.imgur.com/r70IK.pngWhen compiling and running however, it does show the rounded corners. This is using xcode 6.3.2If anyone has any suggestions, it would be very very much appreciated. The project is here. github.com/captainchung/test
setting ccokies for an HTTP request in UIWebView was relatively easy compared to WebKit where it seems you have to use JavaScript injection and manually form the cookies. Is there an easier or comparable way to do this with WebKit?
Hey TungstenT.I got it to run after the same steps you took. I had to change the iCloud Document Storage to App Groups also. (This is probably not related to your issue)Possibly obvious question, did you try a 'Clean'?My issue is getting the UI tests to run as they did in the WWDC15 videos :-( ('Cookies' keep getting adding to the list as 'can')Cheers,Mark
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Getting a NSHTTPCookieManagerCookiesChangedNotification notification and I try to extract an array of cookies from storage as such:NSHTTPCookieStorage *storage = notification.object; NSArray *cookies = [storage cookies];Line # 2 throws the -[NSHTTPCookieStorageInternal cookies]: unrecognized selector sent to instance 0x... error. Header file doesn't mention that the cookies method is deprecated in any way.
I inspected the list of publicly available methods in the NSHTTPCookieStorage and cookies is nowhere to be found:dealloc _initWithIdentifier:private: _syncCookiesregisterForPostingNotificationsinitInternalWithCFStorage:what am I missing here? Is it an issue with the NSHTTPCookieManagerCookiesChangedNotification mechanism? Why is it giving an object of type NSHTTPCookieStorageInternal instead of NSHTTPCookieStorage?
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I've been trying to run with Xcode 7's address sanitizer, and I'm having trouble understanding the problem flagged here. It looks to me like a problem inside of the newly annotated `vector::__swap_out_circular_buffer` at the end of a `push_back` operation.It's dying inside the allocation on line 4 just after `__annotate_delete()`.vector<_Tp, _Allocator>::__swap_out_circular_buffer(__split_buffer<value_type, allocator_type&>& __v) { __annotate_delete(); __alloc_traits::__construct_backward(this->__alloc(), this->__begin_, this->__end_, __v.__begin_); _VSTD::swap(this->__begin_, __v.__begin_); _VSTD::swap(this->__end_, __v.__end_); _VSTD::swap(this->__end_cap(), __v.__end_cap()); __v.__first_ = __v.__begin_; __annotate_new(size()); __invalidate_all_iterators(); }Here's the full error report.AddressSanitizer debugger support is active. Memory error breakpoint has been installed and you can now use the 'memory history' command. ================================================
Hi,let's say I am involved in a very secured environment application, say for example a banking/insurance/investment app dealing with financial and sensitive data.Then I have two main questions:To enable Touch ID login for viewing accounts and transactions data, is it safe to implement it simply by adding the credentials combo to the keychain and retrieving it via the iOS Keychain API available in iOS 8? What are other secured data apps with this feature doing? Do I need to encrypt something (Keychain already does that in my knowledge)?If I develop a WatchKit app, how could I authenticate the Apple Watch app to view secured data? Could I simply retrieve said keychain item from the paired iPhone app or via shared group? What about ACL for this keychain item? I watched session 706 Security and your apps of WWDC 2015: they said it is better to let the server send the cookie or token to enable that particular features you need. But this imply that I need to write new services api for those calls.Any idea
Same issue - been refunded twice in a matter of hours from Apple but support gave the cookie cutter response no insiite.kenmaz might have figured it out!
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Hi,I'm working on a iOS SDK that needs the cookieAcceptPolicy of the [NSHTTPCookieStorage sharedHTTPCookieStorage] to be NSHTTPCookieAcceptPolicyAlways which should be the default according to the documentation:The default cookie accept policy is NSHTTPCookieAcceptPolicyAlways. Changing the cookie policy affects all currently running applications using the cookie storage.I've just created a new iOS project in XCode and this does not seem to be the case// this logs cookieAcceptPolicy 2 NSLog(@cookieAcceptPolicy %@, @([NSHTTPCookieStorage sharedHTTPCookieStorage].cookieAcceptPolicy));So the questions are1) Is the sharedHTTPCookieStorage shared accross iOS applications?2) Can the user of an application change the cookie accecpt policy?3) Why is the default cookieAcceptPolicy NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain even if I did not change it?4 What is the cookieAcceptPolicy of a UIWebView in a app?cheers,Jan