def doLoginByAccount(cls, rpath): __ret__ = TyContext.ServerControl.checkLoginForbid(rpath) if __ret__ != False: return __ret__ msg = TyContext.RunHttp.convertToMsgPack( ['deviceId', 'clientId', 'appId', 'userAccount', 'userPwd']) mo = TyContext.Cls_MsgPack() Account.doLogin(msg, mo) return mo
def doLoginBySnsId(self, rpath): __ret__ = TyContext.ServerControl.checkLoginForbid(rpath) if __ret__ != False: return __ret__ msg = TyContext.RunHttp.convertToMsgPack( ['deviceId', 'clientId', 'appId', 'snsId', 'snsToken']) mo = TyContext.Cls_MsgPack() Account.doLogin(msg, mo) return mo