Corey

Results 159 comments of Corey

> Why not send both? This could work, but I was under the impression that either the `sessionToken` or the `accessToken` was being produced. I could have misinterpreted this. If...

Circle is the only one in use that I know of

Just in case it helps any https://www.appcoda.com/xcframework/

The branch I linked was recently merged and deleted, the location on the main branch is here: https://github.com/parse-community/Parse-Swift/blob/main/Tests/ParseSwiftTests/BatchUtilsTests.swift The linked file with the swift version is here: https://github.com/parse-community/Parse-Swift/blob/f124d0a45c079dba0324b9603e9e106f51ecb24e/Sources/ParseSwift/API/BatchUtils.swift#L34-L50 If what...

@drdaz I recommend updating the CI to Xcode 13.2 as I think it may provide more details about the tests.

This type of functionality could be added if you want to take on the task. My initial thoughts are you conform to the [didReceiveChallenge delegate method](https://developer.apple.com/documentation/foundation/nsurlsessiontaskdelegate/1411595-urlsession) here: https://github.com/parse-community/Parse-SDK-iOS-OSX/blob/5dad4f224d5ae4b36ead891acbdfc15b86d527ae/Parse/Parse/Internal/Commands/CommandRunner/URLSession/Session/PFURLSession.m#L236-L258 Then you...

You have the right idea, but the code you listed is what you would use as a developer. You need to open a PR, add the delegate method I mentioned...

You will also need to do more If you want to pass in your own headers. You won't be able to use your own delegate because Parse already has one....

The links and comments I posted are in reference to how to do it. iOS allows it via `URLSession`, the iOS SDK uses `URLSession`, but currently doesn't expose what's needed...