|
@@ -96,20 +96,20 @@
|
|
|
// [[UMSocialManager defaultManager] setke:@"5a685423f43e4833e500003e"];
|
|
|
[UMConfigure initWithAppkey:@"5a685423f43e4833e500003e" channel:@"App Store"];
|
|
|
|
|
|
- //配置微信平台的Universal Links
|
|
|
- //微信和QQ完整版会校验合法的universalLink,不设置会在初始化平台失败
|
|
|
- [UMSocialGlobal shareInstance].universalLinkDic = @{@(UMSocialPlatformType_WechatSession):@"https://umplus-sdk-download.oss-cn-shanghai.aliyuncs.com/",
|
|
|
- @(UMSocialPlatformType_QQ):@"https://umplus-sdk-download.oss-cn-shanghai.aliyuncs.com/qq_conn/101830139",
|
|
|
- @(UMSocialPlatformType_Sina):@"https://umplus-sdk-download.oss-cn-shanghai.aliyuncs.com/"
|
|
|
- };
|
|
|
+
|
|
|
+ // 微信、QQ、微博完整版会校验合法的universalLink,不设置会在初始化平台失败
|
|
|
+ //配置微信Universal Link需注意 universalLinkDic的key是rawInt类型,不是枚举类型 ,即为 UMSocialPlatformType.wechatSession.rawInt
|
|
|
+ [UMSocialGlobal shareInstance].universalLinkDic =@{@(UMSocialPlatformType_WechatSession):@"https://umplus-sdk-download.oss-cn-shanghai.aliyuncs.com/",
|
|
|
+ @(UMSocialPlatformType_QQ):@"https://umplus-sdk-download.oss-cn-shanghai.aliyuncs.com/qq_conn/101830139",
|
|
|
+ @(UMSocialPlatformType_Sina):@"https://umplus-sdk-download.oss-cn-shanghai.aliyuncs.com/"};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_WechatSession appKey:@"wx0e6a5b18f4cfd10d" appSecret:@"b9a93038b7481278f7a0e048c0d81770" redirectURL:nil];
|
|
|
+ [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_WechatSession appKey:@"wx0e6a5b18f4cfd10d" appSecret:@"b9a93038b7481278f7a0e048c0d81770" redirectURL:@"http://mobile.umeng.com/social"];
|
|
|
|
|
|
//MYFVJZhtygWy5hzh 秘钥 1106703118
|
|
|
- [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_QQ appKey:@"1106734232"/*设置QQ平台的appID*/ appSecret:nil redirectURL:nil];
|
|
|
+ [[UMSocialManager defaultManager] setPlaform:UMSocialPlatformType_QQ appKey:@"1106734232"/*设置QQ平台的appID*/ appSecret:nil redirectURL:@"http://mobile.umeng.com/social"];
|
|
|
|
|
|
|
|
|
[WXApi registerApp:@"wx0e6a5b18f4cfd10d" universalLink:@"https://www.jianyu360.cn/"];
|