I have been using https://github.com/Jawbone/UPPlatform_iOS_SDK for a while now and getting the user's daily steps.
I wanted to pull data from the Jawbone API when the app is in background state. I have followed this tutorial : http://www.devfright.com/ios-7-background-app-refresh-tutorial/ To call this method :
[UPMoveAPI getMovesWithLimit:10U completion:^(NSArray *moves, UPURLResponse *response, NSError *error) {
NSLog(@"This is not getting executed in background");
}];
The jawbone session is successfully verified and seems that my session is active. But I get no response and the above NSLog doesn't get executed in background. Please I have tried contacting Jawbone support, seems that they are not replying back.
Anyone experienced the same, please help.