FSNetworking icon indicating copy to clipboard operation
FSNetworking copied to clipboard

foursquare iOS networking library

Results 10 FSNetworking issues
Sort by recently updated
recently updated
newest added

Can set a connection timeout value, in seconds (NSTimeInterval), as a default for all FSNConnection instances, and individually.

We believe that #8 is caused by a race between a failing parse block in the background thread and a background task expiration triggered by `UIKit`. In the event that...

FSNConnection.m:523:36: Implicit conversion loses integer precision: 'NSUInteger' (aka 'unsigned long') to 'int' ![image](https://cloud.githubusercontent.com/assets/893643/8793812/bc19f38c-2fb6-11e5-917f-e1bfe8ff2c34.png) Reason: The count method of NSArray returns an NSUInteger. I changed type of concurrencyCountAtStart to NSUInteger.

My backend has a DELETE endpoint. What needs to be changed for this library to support DELETE requests?

I don't know if its supported, but it seems to work. Mostly. In FSNConnection, there is the mutableset of current connections. mutableConnections It is a NSMutableSet and is a global,...

failWithError: is not designed to be called more than once, but in our case it is sometimes called twice: when the internet connectivity dies, and when UIApplication decides to run...

I’ve recently added FSNetworking to the CocoaPods package manager repo. CocoaPods is a tool for managing dependencies for OS X and iOS Xcode projects and provides a central repository for...

Hi I experience some problems with `[self.connection cancel]` in the `dealloc` method. I have a feeling it sometimes also cancel other ongoing request in the queue. Is this possible ?...

Is there a default value? I skimmed the source, but couldn't find any instance of "timeout".