酷店

SecurityVerification.h 639B

12345678910111213141516171819202122232425
  1. //
  2. // SecurityVerification.h
  3. // SecurityGuardSDKPro
  4. //
  5. // Created by lifengzhong on 15/8/13.
  6. // Copyright (c) 2015年 alibaba. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface SecurityVerification : NSObject
  10. /**
  11. * 聚安全防控接口
  12. *
  13. * @param info 其他需要的信息,以key-v形式存于info中,可选
  14. * @param timeout 接口调用超时时间,单位秒,最大不超过22,最小不小于1
  15. *
  16. * @return 聚安全服务器返回的安全token
  17. */
  18. + (NSString*) doJAQVerfificationSync: (NSDictionary*) info
  19. timeout: (NSInteger) timeout;
  20. @end