Skip to content

Commit 93d6c5a

Browse files
Remote Config: update API docs IID -> FIS notes (#5561)
1 parent ca4a655 commit 93d6c5a

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

FirebaseRemoteConfig/Sources/Public/FIRRemoteConfig.h

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -192,23 +192,23 @@ NS_SWIFT_NAME(RemoteConfig)
192192
/// Fetches Remote Config data with a callback. Call activateFetched to make fetched data available
193193
/// to your app.
194194
///
195-
/// Note: This method uses a Firebase Instance ID token to identify the app instance, and once it's
196-
/// called, it periodically sends data to the Firebase backend. (see
197-
/// `[FIRInstanceID getIDWithHandler:]`).
198-
/// To stop the periodic sync, developers need to call `[FIRInstanceID deleteIDWithHandler:]` and
199-
/// avoid calling this method again.
195+
/// Note: This method uses a Firebase Installations token to identify the app instance, and once
196+
/// it's called, it periodically sends data to the Firebase backend. (see
197+
/// `[FIRInstallations authTokenWithCompletion:]`).
198+
/// To stop the periodic sync, developers need to call `[FIRInstallations deleteWithCompletion:]`
199+
/// and avoid calling this method again.
200200
///
201201
/// @param completionHandler Fetch operation callback.
202202
- (void)fetchWithCompletionHandler:(nullable FIRRemoteConfigFetchCompletion)completionHandler;
203203

204204
/// Fetches Remote Config data and sets a duration that specifies how long config data lasts.
205205
/// Call activateFetched to make fetched data available to your app.
206206
///
207-
/// Note: This method uses a Firebase Instance ID token to identify the app instance, and once it's
208-
/// called, it periodically sends data to the Firebase backend. (see
209-
/// `[FIRInstanceID getIDWithHandler:]`).
210-
/// To stop the periodic sync, developers need to call `[FIRInstanceID deleteIDWithHandler:]` and
211-
/// avoid calling this method again.
207+
/// Note: This method uses a Firebase Installations token to identify the app instance, and once
208+
/// it's called, it periodically sends data to the Firebase backend. (see
209+
/// `[FIRInstallations authTokenWithCompletion:]`).
210+
/// To stop the periodic sync, developers need to call `[FIRInstallations deleteWithCompletion:]`
211+
/// and avoid calling this method again.
212212
///
213213
/// @param expirationDuration Override the (default or optionally set minimumFetchInterval property
214214
/// in FIRRemoteConfigSettings) minimumFetchInterval for only the current request, in seconds.
@@ -220,11 +220,11 @@ NS_SWIFT_NAME(RemoteConfig)
220220
/// Fetches Remote Config data and if successful, activates fetched data. Optional completion
221221
/// handler callback is invoked after the attempted activation of data, if the fetch call succeeded.
222222
///
223-
/// Note: This method uses a Firebase Instance ID token to identify the app instance, and once it's
224-
/// called, it periodically sends data to the Firebase backend. (see
225-
/// `[FIRInstanceID getIDWithHandler:]`).
226-
/// To stop the periodic sync, developers need to call `[FIRInstanceID deleteIDWithHandler:]` and
227-
/// avoid calling this method again.
223+
/// Note: This method uses a Firebase Installations token to identify the app instance, and once
224+
/// it's called, it periodically sends data to the Firebase backend. (see
225+
/// `[FIRInstallations authTokenWithCompletion:]`).
226+
/// To stop the periodic sync, developers need to call `[FIRInstallations deleteWithCompletion:]`
227+
/// and avoid calling this method again.
228228
///
229229
/// @param completionHandler Fetch operation callback.
230230
- (void)fetchAndActivateWithCompletionHandler:

0 commit comments

Comments
 (0)