Search results for

ASWebAuthenticationSession cookie

1,295 results found

Post

Replies

Boosts

Views

Activity

Network history clears after redirect
Is it possible to keep the network history in the developer tools after a redirect?This question is related to our other question in the public forum: https://discussions.apple.com/thread/7770177Feel free to look at this as well 😎We lose all cookies and security tokens during a series of Http 302´s. It would be benefitial to see exactly whats going on, like the dev tool in Chrome. The traffic is Https so it would be good to get the browser version. Any other tools that can do the job?The development tool console has the right-click option to keep data but it only sticks to just the console.
0
0
2.6k
Dec ’16
Export UIDocument with custom file package UTI
I'm trying to export my UIDocument subclass with a UIDocumentPickerViewController. The subclass writes data to a FileWrapper and its UTI conforms to com.apple.package.But the presented document picker shows Documents in iCloud Drive are not available because the iCloud Drive setting is disabled.The document is successfully written to the cache, as I can see from the exported container package.When I change the document subclass and custom UTI to conform to a single file (e.g. public.plain-text), the document picker works fine and I can export the file. So the problem seems to be with the Document Type or Exported UTI.Am I doing something wrong or is this a bug?Info.plist<key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeIconFiles</key> <array/> <key>CFBundleTypeName</key> <string>Custom Doc</string> <key>LSHandlerRank</key> <string>Owner</string> <key>LSItemContentTypes</key> <array> <s
1
0
2.0k
Dec ’16
Reply to SFSafariViewController does not send cookie set from Safari Browser session
I understand that as of iOS9 you should be able to read cookies with SFSafariViewController.If I set a cookie on my page in JS using the following:var dd = new Date(Date.now() + 1000 * 60 * 60 * 24).toGMTString();var expires = expires=+ dd;document.cookie = mycookie=cookievalue; + expires + domain=.mydomain.co.uk ; path=/ ;If I do :- (void)safariViewController:(SFSafariViewController *)controller didCompleteInitialLoad:(BOOL)didLoadSuccessfully{ NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; NSArray *cookiesArray = [storage cookies];}cookiesArray is always empty.If I use a traditional UIWebView-(void)webViewDidFinishLoad:(UIWebView *)webView{ NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; NSArray *cookiesArray = [storage cookies];}I get the cookie I was expecting.Any ideas what I might be doing wrong?
Topic: UI Frameworks SubTopic: UIKit Tags:
Dec ’16
tvjs player doesn't continue playlist
I start my player like this:const player = new Player(); player.playlist = new Playlist(); player.playlist.push(new MediaItem(video, http://example.com/example_video1)); player.playlist.push(new MediaItem(video, http://example.com/example_video2)); player.playlist.push(new MediaItem(video, http://example.com/example_video3)); player.present();For the first video it just plays as expected but after the video finished it changes to the second video but I can't get it to play.I already tried using event listeners like this:player.addEventListener('mediaItemDidChange', (e) => { player.play(); });But nothing seems to work.Edit:I have tried it with a different video from another source and it works, so it's probably a problem with my videos.The second video I tried is a .mov and my videos are .mp4 but that shouldn't be a problem. Right?I also have compared the HTTP headers for both video requests.Here's the video that works:HTTP/1.1 200 OK Server: Apache Last-Modified: Mon, 12 Aug 2013 22:51:47 GMT ETag: 83-4e3c
0
0
366
Jan ’17
Reply to Darwin Notifications in Swift
I can help you set up a notification handler but I must reiterate that using undocumented notification strings is a good way to:Get rejected by App Review, perhaps now, perhaps in the futureHave your app break after some OS updateYou really don’t want to do this.I get the error: A C function pointer cannot be formed from a closure that captures contextBy default Swift functions (including methods) use Swift calling conventions. This allows them to do clever things like capture values from the surrounding context. For example:func startTimer(with message: String) { Timer.scheduledTimer(withTimeInterval: 1.0, repeats: false) { _ in print(message) } }Here we’re passing an anonymous function (a closure) to scheduledTimer(withTimeInterval:repeats:block:). Note how that function ‘captures’ the message value from the surrounding context, so it can print that message when it runs after the timer fires. In C, functions do not support this. C functions can only access:Their parametersGlobal variablesSwift has the abili
Topic: Programming Languages SubTopic: Swift Tags:
Jan ’17
Reply to Certificates, Identifiers & Profiles: "An unspecified error occurred. An invalid value '[undefined]' was provided for the parameter 'types'."?
I've got rid of this. Neither clearing cookies nor using other browser helped.Once I opened other certs page (https://developer.apple.com/account/mac/certificate/), iOS cert page shows my certs correctly again.I have several certs & profiles for iOS but no ones for OS X, if it helps.
Feb ’17
Reply to Are HTTPCookies stored encrypted by HTTPCookieStorageStorage?
Are HTTPCookies stored encrypted by HTTPCookieStorageStorage?No. However, I believe the cookie store is covered by file protection.In the case of an authentiction cookie, if the cookie is not stored encrypted, it could be removed from the cookie storage and stored in the keychain. Of course it would need to be set and removed before and after sessions.I’m not sure if this is a suggestion for Apple or a plan of action on your part. If it’s the former, feel free to file an enhancement request for that, although keep in mind that there’s no obvious way to identify security-critical cookies.Please post your bug number, just for the record.If it’s your plan of action, my only comment is that, if you know tha a specific cookie is critical to security, you might be better off manually managing that cookie rather than relying on the cookie store. That way you can make security guarantees, rather than relying on how the cookie store happens to be
Topic: Privacy & Security SubTopic: General Tags:
Feb ’17
Reply to Xcode shows "the apple developer website is undergoing maintenance" message
It is not uncommon for the backend to be unreliable, but when they take the time to convey that message, it tends to be more of a full stop than just another blip.The 'status' page tends to be eye-candy...operational theater that works to project an impression more than hard info, it seems.Best anyone can do when these outages surface is to keep trying, clear Safari cache/cookies and be patient.
Feb ’17