aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth/Source/Public/FIRUser.h
diff options
context:
space:
mode:
Diffstat (limited to 'Firebase/Auth/Source/Public/FIRUser.h')
-rw-r--r--Firebase/Auth/Source/Public/FIRUser.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/Firebase/Auth/Source/Public/FIRUser.h b/Firebase/Auth/Source/Public/FIRUser.h
index dd8362d..1c7af7a 100644
--- a/Firebase/Auth/Source/Public/FIRUser.h
+++ b/Firebase/Auth/Source/Public/FIRUser.h
@@ -305,17 +305,6 @@ NS_SWIFT_NAME(User)
- (void)getIDTokenWithCompletion:(nullable FIRAuthTokenCallback)completion
NS_SWIFT_NAME(getIDToken(completion:));
-/** @fn getTokenWithCompletion:
- @brief Please use `getIDTokenWithCompletion:` instead.
-
- @param completion Optionally; the block invoked when the token is available. Invoked
- asynchronously on the main thread in the future.
-
- @remarks See `FIRAuthErrors` for a list of error codes that are common to all API methods.
- */
-- (void)getTokenWithCompletion:(nullable FIRAuthTokenCallback)completion
- NS_SWIFT_NAME(getToken(completion:)) __attribute__((deprecated));
-
/** @fn getIDTokenForcingRefresh:completion:
@brief Retrieves the Firebase authentication token, possibly refreshing it if it has expired.
@@ -332,23 +321,6 @@ NS_SWIFT_NAME(User)
- (void)getIDTokenForcingRefresh:(BOOL)forceRefresh
completion:(nullable FIRAuthTokenCallback)completion;
-/** @fn getTokenForcingRefresh:completion:
- @brief Please use getIDTokenForcingRefresh:completion instead.
-
- @param forceRefresh Forces a token refresh. Useful if the token becomes invalid for some reason
- other than an expiration.
- @param completion Optionally; the block invoked when the token is available. Invoked
- asynchronously on the main thread in the future.
-
- @remarks The authentication token will be refreshed (by making a network request) if it has
- expired, or if `forceRefresh` is YES.
-
- @remarks See `FIRAuthErrors` for a list of error codes that are common to all API methods.
- */
-- (void)getTokenForcingRefresh:(BOOL)forceRefresh
- completion:(nullable FIRAuthTokenCallback)completion
- __attribute__((deprecated));
-
/** @fn linkWithCredential:completion:
@brief Convenience method for `linkAndRetrieveDataWithCredential:completion:` This method
doesn't return additional identity provider data.