You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Framework/IngeoSDK.framework/Versions/A/Headers/IGLocationManager.h
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,28 @@
61
61
*/
62
62
+ (void)setUserId:(NSString *)userId;
63
63
64
+
/**
65
+
Set custom server URL for submitting location updates
66
+
67
+
You may wish to submit location updates to your own server. Your server should respond to POST requests on this URL containing the IGLocation object in JSON format.
68
+
Note: Ingeo backend support gets disabled once a custom server URL is set.
69
+
70
+
@param url The URL for submitting location updates
71
+
*/
72
+
+ (void)setCustomServerURL:(NSString *)url;
73
+
74
+
/**
75
+
Set custom HTTP headers for location update POST requests
76
+
77
+
If you choose to set a custom server URL for submitting location updates, you may also want
78
+
to set custom HTTP headers (for authentication and such) with the outgoing location POST request.
79
+
Simply provide a dictionary where keys represent the HTTP header names, and values represent the coresponding HTTP header values.
80
+
81
+
@param headers A dictionary containing your custom HTTP headers
0 commit comments