mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 11:47:40 +00:00
40 lines
1.1 KiB
Objective-C
40 lines
1.1 KiB
Objective-C
/** @file FIRTwitterAuthProvider.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
|
|
|
|
/** @var FIRTwitterAuthProviderID
|
|
@brief A string constant identifying the Twitter identity provider.
|
|
*/
|
|
extern NSString *const FIRTwitterAuthProviderID;
|
|
|
|
/** @class FIRTwitterAuthProvider
|
|
@brief Utility class for constructing Twitter credentials.
|
|
*/
|
|
@interface FIRTwitterAuthProvider : NSObject
|
|
|
|
/** @fn credentialWithToken:secret:
|
|
@brief Creates an @c FIRAuthCredential for a Twitter sign in.
|
|
@param token The Twitter OAuth token.
|
|
@param secret The Twitter OAuth secret.
|
|
@return A @c FIRAuthCredential containing the Twitter credential.
|
|
*/
|
|
+ (FIRAuthCredential *)credentialWithToken:(NSString *)token secret:(NSString *)secret;
|
|
|
|
/** @fn init
|
|
@brief This class is not meant to be initialized.
|
|
*/
|
|
- (nullable instancetype)init NS_UNAVAILABLE;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|