Olivier Halligon
Olivier Halligon
I believe this is because NSURLSession adds the HTTPAdditionalHeaders at the very end just before sending the request to the network, so you are querying them too soon? Will try...
Unfortunately I just confirmed that it seems to be iOS's fault. (1) I created a NSURLSessionConfiguration and NSURLSession as in your code: ``` objc NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration]; config.HTTPAdditionalHeaders...
Hi again, I've started working on [a branch](https://github.com/AliSoftware/OHHTTPStubs/compare/URLProtocol_SessionConfig) to workaround this issue. Feel free to test this branch in your code and tell me if it fixes your issue. If...
I just discovered a very strange behavior: - when testing **on iOS7, the additional headers** specified in the session configuration **are added**. - they are missing **only on iOS8**! @rsaunders100...
Hi @rsaunders100 Do you still have the issue with iOS8.1, 8.2 and 8.3? Or has Apple fixed the issue since then? [EDIT] Ok nvm, I misread the tests I recently...
I'm not sure there's any point on doing that ourselves while CocoaDocs already does that for us? http://cocoadocs.org/docsets/OHHTTPStubs/
Note that if you click on the [](http://cocoadocs.org/docsets/OHHTTPStubs) badge in the README it will send you straight to that API documentation on CocoaDocs already. That's pretty standard for README files...
Very nice idea! :+1: Do you have any idea about a simple implementation? The one from Overcoat is quite tightly coupled with Mantle. The only thing I'm wondering if, is...
Cool, keep me posted!
Hey @janglesdev any news on that front? Stubbled upon https://github.com/kylef/URITemplate.swift the other day which might be an interesting starting point to implement this?