Commit 1eecf92325a036c13f70510d27f000a67bdb410e
1 parent
524bad70
no message
Showing
3 changed files
with
3 additions
and
3 deletions
CNLiveBLoginModule/Classes/Controller/CNLiveLoginController.m
| ... | ... | @@ -179,7 +179,7 @@ |
| 179 | 179 | - (void)appleLogin:(CNLiveThreeLoginModel *)model{ |
| 180 | 180 | NSDictionary *params = @{@"thirdPartyPlat":model.thirdPartyPlat?model.thirdPartyPlat:@"", |
| 181 | 181 | @"thirdPartyId":model.thirdPartyId?model.thirdPartyId:@"", |
| 182 | - @"frmId":model.frmId?model.frmId:@"", | |
| 182 | + @"frmId":model.frmId?model.frmId:@"apple", | |
| 183 | 183 | @"clientPlat":@"i", |
| 184 | 184 | @"nickName":model.nickName?model.nickName:@"", |
| 185 | 185 | @"gender":model.gender?model.gender:@"", | ... | ... |
CNLiveBLoginModule/Classes/ThreeLogin/CNLiveBindingTelView.m
| ... | ... | @@ -304,7 +304,7 @@ static const NSInteger timeValue = 1.5; |
| 304 | 304 | @"verificationCode":self.code.text, |
| 305 | 305 | @"thirdPartyPlat":self.model.thirdPartyPlat?self.model.thirdPartyPlat:@"", |
| 306 | 306 | @"thirdPartyId":self.model.thirdPartyId?self.model.thirdPartyId:@"", |
| 307 | - @"frmId":self.model.frmId?self.model.frmId:@"", | |
| 307 | + @"frmId":self.model.frmId?self.model.frmId:@"apple", | |
| 308 | 308 | @"clientPlat":@"i", |
| 309 | 309 | @"nickName":self.model.nickName?self.model.nickName:@"", |
| 310 | 310 | @"gender":self.model.gender?self.model.gender:@"", | ... | ... |
CNLiveBLoginModule/Classes/ThreeLogin/CNLiveThreeLoginRequest.m
| ... | ... | @@ -17,7 +17,7 @@ |
| 17 | 17 | + (void)thirdPartyLoginWithType:(CNLiveSendAuthResp)type model:(CNLiveThreeLoginModel *)model block:(CNLiveLoginResponseBlock)block { |
| 18 | 18 | NSDictionary *params = @{@"thirdPartyPlat":model.thirdPartyPlat?model.thirdPartyPlat:@"", |
| 19 | 19 | @"thirdPartyId":model.thirdPartyId?model.thirdPartyId:@"", |
| 20 | - @"frmId":model.frmId?model.frmId:@"", | |
| 20 | + @"frmId":model.frmId?model.frmId:@"apple", | |
| 21 | 21 | @"clientPlat":@"i"}; |
| 22 | 22 | [CNLiveNetworking setAllowRequestDefaultArgument:YES]; |
| 23 | 23 | [CNLiveNetworking setupShowDataResult:NO]; | ... | ... |