You've already forked Task-Master-2.0
mirror of
https://github.com/MrLyallCSIT/Task-Master-2.0.git
synced 2026-01-18 07:09:38 +00:00
40 lines
1.0 KiB
Objective-C
Executable File
40 lines
1.0 KiB
Objective-C
Executable File
/** @file FIRFacebookAuthProvider.h
|
|
@brief Firebase Auth SDK
|
|
@copyright Copyright 2016 Google Inc.
|
|
@remarks Use of this SDK is subject to the Google APIs Terms of Service:
|
|
https://developers.google.com/terms/
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class FIRAuthCredential;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
@brief A string constant identifying the Facebook identity provider.
|
|
*/
|
|
extern NSString *const FIRFacebookAuthProviderID;
|
|
|
|
/** @class FIRFacebookAuthProvider
|
|
@brief Utility class for constructing Facebook credentials.
|
|
*/
|
|
@interface FIRFacebookAuthProvider : NSObject
|
|
|
|
/** @fn credentialWithAccessToken:
|
|
@brief Creates an @c FIRAuthCredential for a Facebook sign in.
|
|
|
|
@param accessToken The Access Token from Facebook.
|
|
@return A FIRAuthCredential containing the Facebook credentials.
|
|
*/
|
|
+ (FIRAuthCredential *)credentialWithAccessToken:(NSString *)accessToken;
|
|
|
|
/** @fn init
|
|
@brief This class should not be initialized.
|
|
*/
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|