其他分享
首页 > 其他分享> > mPaas苹果iOS客户端钉钉分享时报错bundleid不匹配的解决办法

mPaas苹果iOS客户端钉钉分享时报错bundleid不匹配的解决办法

作者:互联网

 

 

前面博客都有具体的“绕过三方sdk校验bundleid”的方法

这里只贴关键代码

 

    NSMutableDictionary*threadDict =  [[NSThread mainThread] threadDictionary];

      [threadDict setValue:[NSNumber numberWithBool:YES] forKey:@"useHookBundleid"];

    

    [shareKit shareMessage:msg toChannel:kAPSKChannelDingTalkSession   completionBlock:^(NSError *error, NSDictionary *userInfo) {

        

    }];

    [threadDict setValue:[NSNumber numberWithBool:NO] forKey:@"useHookBundleid"];

 

在hook的系统方法bundleIdentifierS处理

 

- (NSString *)bundleIdentifierS{

    NSMutableDictionary*threadDict =  [[NSThread mainThread] threadDictionary];

    if ([[threadDict objectForKey:@"useHookBundleid"] boolValue] == YES) {

        return @"com.mpaas.demo";

      }

}

这样就可以使用官方demo的钉钉分享注册码,bundleid测试分享了。

或者生产环境与测试环境bundleid不一致的分享测试。

 

 

 

 

标签:demo,iOS,mPaas,useHookBundleid,NSThread,threadDict,分享,bundleid
来源: https://blog.csdn.net/qq_15509071/article/details/110470086