You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
685 B
30 lines
685 B
//
|
|
// DTFIdentityProtocol.h
|
|
// DTFUtility
|
|
//
|
|
// Created by mengbingchuan on 2023/6/7.
|
|
// Copyright © 2023 com.alipay.iphoneclient.zoloz. All rights reserved.
|
|
//
|
|
#import <Foundation/Foundation.h>
|
|
#import "ZIMResponse.h"
|
|
#import "DTFRPCProxyProtocol.h"
|
|
|
|
@protocol DTFFaceIdentityProtocol <NSObject>
|
|
|
|
- (void)initSDK;
|
|
|
|
- (void)initIPv6;
|
|
|
|
- (NSString *)getVersion;
|
|
|
|
- (void)setRpcProxy:(id<DTFRPCProxyProtocol>)proxy;
|
|
|
|
- (NSDictionary *)getMetaInfo;
|
|
|
|
- (void)preload:(NSDictionary *)param completion:(void (^)(BOOL success))completion;
|
|
|
|
- (void)verifyWith:(NSString *)zimId
|
|
extParams:(NSDictionary *)params
|
|
onCompletion:(void (^)(ZIMResponse *response))callback;
|
|
|
|
@end
|