├── .gitattributes ├── API ├── activity │ ├── gamer │ │ └── role │ │ │ ├── bindRole.md │ │ │ └── getBindRoleInfo.md │ ├── lottery │ │ ├── getRemain.md │ │ └── start.md │ └── task │ │ ├── complete.md │ │ ├── getList.md │ │ └── receive.md ├── aki │ ├── resource.md │ ├── resource │ │ └── period │ │ │ └── list.md │ └── roleBox │ │ └── akiBox │ │ ├── baseData.md │ │ ├── calabashData.md │ │ └── exploreIndex.md ├── encourage │ ├── gold │ │ └── getTotalGold.md │ ├── level │ │ ├── getTaskProcess.md │ │ └── shareTask.md │ └── signIn │ │ ├── initSignInV2.md │ │ ├── queryRecordV2.md │ │ └── v2.md ├── forum │ ├── getPostDetail.md │ ├── like.md │ ├── list.md │ └── uploadForumImg.md ├── gamer │ ├── role │ │ └── list.md │ ├── roleBox │ │ └── aki │ │ │ ├── baseData.md │ │ │ ├── calabashData.md │ │ │ └── exploreIndex.md │ └── widget │ │ ├── game2 │ │ └── getData.md │ │ └── game3 │ │ └── getData.md └── user │ ├── followUser.md │ ├── getSmsCode.md │ ├── haveSignIn.md │ ├── mineV2.md │ ├── role │ └── findRoleList.md │ ├── sdkLogin.md │ ├── sdkLoginForH5.md │ ├── signIn.md │ ├── signIn │ └── info.md │ └── updateHeadUrl.md ├── LICENSE ├── PARAMS.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/.gitattributes -------------------------------------------------------------------------------- /API/activity/gamer/role/bindRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/activity/gamer/role/bindRole.md -------------------------------------------------------------------------------- /API/activity/gamer/role/getBindRoleInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/activity/gamer/role/getBindRoleInfo.md -------------------------------------------------------------------------------- /API/activity/lottery/getRemain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/activity/lottery/getRemain.md -------------------------------------------------------------------------------- /API/activity/lottery/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/activity/lottery/start.md -------------------------------------------------------------------------------- /API/activity/task/complete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/activity/task/complete.md -------------------------------------------------------------------------------- /API/activity/task/getList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/activity/task/getList.md -------------------------------------------------------------------------------- /API/activity/task/receive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/activity/task/receive.md -------------------------------------------------------------------------------- /API/aki/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/aki/resource.md -------------------------------------------------------------------------------- /API/aki/resource/period/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/aki/resource/period/list.md -------------------------------------------------------------------------------- /API/aki/roleBox/akiBox/baseData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/aki/roleBox/akiBox/baseData.md -------------------------------------------------------------------------------- /API/aki/roleBox/akiBox/calabashData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/aki/roleBox/akiBox/calabashData.md -------------------------------------------------------------------------------- /API/aki/roleBox/akiBox/exploreIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/aki/roleBox/akiBox/exploreIndex.md -------------------------------------------------------------------------------- /API/encourage/gold/getTotalGold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/encourage/gold/getTotalGold.md -------------------------------------------------------------------------------- /API/encourage/level/getTaskProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/encourage/level/getTaskProcess.md -------------------------------------------------------------------------------- /API/encourage/level/shareTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/encourage/level/shareTask.md -------------------------------------------------------------------------------- /API/encourage/signIn/initSignInV2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/encourage/signIn/initSignInV2.md -------------------------------------------------------------------------------- /API/encourage/signIn/queryRecordV2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/encourage/signIn/queryRecordV2.md -------------------------------------------------------------------------------- /API/encourage/signIn/v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/encourage/signIn/v2.md -------------------------------------------------------------------------------- /API/forum/getPostDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/forum/getPostDetail.md -------------------------------------------------------------------------------- /API/forum/like.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/forum/like.md -------------------------------------------------------------------------------- /API/forum/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/forum/list.md -------------------------------------------------------------------------------- /API/forum/uploadForumImg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/forum/uploadForumImg.md -------------------------------------------------------------------------------- /API/gamer/role/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/gamer/role/list.md -------------------------------------------------------------------------------- /API/gamer/roleBox/aki/baseData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/gamer/roleBox/aki/baseData.md -------------------------------------------------------------------------------- /API/gamer/roleBox/aki/calabashData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/gamer/roleBox/aki/calabashData.md -------------------------------------------------------------------------------- /API/gamer/roleBox/aki/exploreIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/gamer/roleBox/aki/exploreIndex.md -------------------------------------------------------------------------------- /API/gamer/widget/game2/getData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/gamer/widget/game2/getData.md -------------------------------------------------------------------------------- /API/gamer/widget/game3/getData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/gamer/widget/game3/getData.md -------------------------------------------------------------------------------- /API/user/followUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/followUser.md -------------------------------------------------------------------------------- /API/user/getSmsCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/getSmsCode.md -------------------------------------------------------------------------------- /API/user/haveSignIn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/haveSignIn.md -------------------------------------------------------------------------------- /API/user/mineV2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/mineV2.md -------------------------------------------------------------------------------- /API/user/role/findRoleList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/role/findRoleList.md -------------------------------------------------------------------------------- /API/user/sdkLogin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/sdkLogin.md -------------------------------------------------------------------------------- /API/user/sdkLoginForH5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/sdkLoginForH5.md -------------------------------------------------------------------------------- /API/user/signIn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/signIn.md -------------------------------------------------------------------------------- /API/user/signIn/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/signIn/info.md -------------------------------------------------------------------------------- /API/user/updateHeadUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/API/user/updateHeadUrl.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/LICENSE -------------------------------------------------------------------------------- /PARAMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/PARAMS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomyJan/Kuro-API-Collection/HEAD/README.md --------------------------------------------------------------------------------