RLMCredentials
Objective-C
@interface RLMCredentials : NSObject
Swift
@_nonSendable(_assumed) class RLMCredentials : NSObject, @unchecked Sendable
代表特定 Realm App 用户的不透明凭证。
-
生成凭证令牌的身份提供商的名称。
声明
Objective-C
@property (nonatomic, readonly) RLMIdentityProvider _Nonnull provider;
Swift
var provider: RLMIdentityProvider { get }
-
从 Facebook 帐户令牌构建并返回档案。
声明
Objective-C
+ (nonnull instancetype)credentialsWithFacebookToken: (nonnull RLMCredentialsToken)token;
Swift
convenience init(facebookToken token: String)
-
从 Google 帐户令牌构建并返回档案。
声明
Objective-C
+ (nonnull instancetype)credentialsWithGoogleAuthCode: (nonnull RLMCredentialsToken)token;
Swift
convenience init(googleAuthCode token: String)
-
从 Google ID 令牌构建并返回凭证。
声明
Objective-C
+ (nonnull instancetype)credentialsWithGoogleIdToken: (nonnull RLMCredentialsToken)token;
Swift
convenience init(googleIdToken token: String)
-
从 Apple 帐户令牌构建并返回档案。
声明
Objective-C
+ (nonnull instancetype)credentialsWithAppleToken: (nonnull RLMCredentialsToken)token;
Swift
convenience init(appleToken token: String)
-
从用户 API 密钥构建并返回档案。
声明
Objective-C
+ (nonnull instancetype)credentialsWithUserAPIKey:(nonnull NSString *)apiKey;
Swift
convenience init(userAPIKey apiKey: String)
-
从服务器 API 密钥构建并返回档案。
声明
Objective-C
+ (nonnull instancetype)credentialsWithServerAPIKey:(nonnull NSString *)apiKey;
Swift
convenience init(serverAPIKey apiKey: String)
-
根据电子邮件和密码构建并返回 Atlas App Services 档案。
声明
Objective-C
+ (nonnull instancetype)credentialsWithEmail:(nonnull NSString *)email password:(nonnull NSString *)password;
Swift
convenience init(email: String, password: String)
-
构造并从 JSON web token 返回凭证。
声明
Objective-C
+ (nonnull instancetype)credentialsWithJWT:(nonnull NSString *)token;
Swift
convenience init(jwt token: String)
-
构造并返回匿名凭证
声明
Objective-C
+ (nonnull instancetype)anonymousCredentials;
Swift
class func anonymous() -> Self