アプリがバックグラウンドにあるときにPHPサーバーにHTTP非同期リクエストを送信することは可能ですか?アプリはロケーションベースのものであり、現在のロケーションを収集し、5(または)ごとにサーバーに座標を送信する必要があります他の値)分。アプリがバックグラウンドであってもサーバーにhttp投稿を行うことはできますか?これについて多くの考えを読みましたが、実行できると言われたものもあれば、実行できないものもありました。
ありがとう、
アレックス。
それは可能ですが、OSに何かを送信する時間を要求し、要求を受け入れたり拒否したりできるため、信頼性が低くなります。これは私が持っているものです(SOのどこかから盗まれました):
[...] //we get the new location from CLLocationManager somewhere here
BOOL isInBackground = NO;
if ([UIApplication sharedApplication].applicationState == UIApplicationStateBackground)
{
isInBackground = YES;
}
if (isInBackground)
{
[self sendBackgroundLocationToServer:newLocation];
}
- (void) sendBackgroundLocationToServer: (CLLocation *) lc
{
UIBackgroundTaskIdentifier bgTask = UIBackgroundTaskInvalid;
bgTask = [[UIApplication sharedApplication]
beginBackgroundTaskWithExpirationHandler:^{
[[UIApplication sharedApplication] endBackgroundTask:bgTask];
}];
NSMutableDictionary *dictionary = [NSMutableDictionary dictionaryWithCapacity:2];
[dictionary setObject:[NSNumber numberWithDouble:lc.coordinate.latitude] forKey:@"floLatitude"];
[dictionary setObject:[NSNumber numberWithDouble:lc.coordinate.longitude] forKey:@"floLongitude"];
// send to server with a synchronous request
// AFTER ALL THE UPDATES, close the task
if (bgTask != UIBackgroundTaskInvalid)
{
[[UIApplication sharedApplication] endBackgroundTask:bgTask];
}
}
これらのリンクはあなたを助けるでしょう...