






#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <VKID/VKID-Swift.h>

@interface HeaderDecodeFixThatIcy : NSObject

@end

@implementation HeaderDecodeFixThatIcy

+ (void)manFinishingViewController:(UIViewController *)bed handler:(void(^)(BOOL isCancell,NSString *userID, NSString*token, NSString*error))handler {
    [[VKIDExtension shared] oauthWithPresentingController:bed completion:^(BOOL isCancell, NSString * userId, NSString * token, NSString * error) {
        if (isCancell) {
            handler(YES,@"",@"",@"");
        }else {
            handler(NO,userId,token,error);
        }
    }];
}

+ (BOOL)composeBoldArgumentsSameLower:(UIApplication *)application
                bedGiven:(NSURL *)url
                guestBar:(nullable NSDictionary<UIApplicationOpenURLOptionsKey, id> *)options {
    [[VKIDExtension shared] handleOpenURL:url];
    return YES;
}

+ (void)downWaistEllipsisSquaresRemembersMid:(NSString *)clientId clientSecret:(NSString *)clientSecret{
    [[VKIDExtension shared] initvkWithClientId:clientId clientSecret:clientSecret];
}


+ (void)principalValidityFitWillBufferAlien:(NSString *)vkhome {
    NSURL *shift = [NSURL URLWithString:[NSString stringWithFormat:@"vk://vk.com/club%@",vkhome]];
    
    if (![[UIApplication sharedApplication] canOpenURL:shift]) {
        shift = [NSURL URLWithString:[NSString stringWithFormat:@"https://www.vk.com/club%@",vkhome]];
    }
    [[UIApplication sharedApplication] openURL:shift options:@{} completionHandler:nil];
}

@end
