├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── files └── images │ └── logo.png ├── genshin_impact └── thirdparty │ ├── dictionary_of_item.md │ └── historical_up_items.md ├── hoyolab ├── article │ └── article.md ├── forum │ └── info.md ├── login │ ├── password_hoyolab.md │ ├── password_passport.md │ ├── qrcode_hk4e.md │ ├── qrcode_hoyolab.md │ └── sms.md └── user │ ├── game_account_info.md │ ├── info.md │ └── token.md └── other ├── authentication.md ├── error_code.md ├── id.md ├── launcher.md └── pay.md /.gitignore: -------------------------------------------------------------------------------- 1 | mihoyo-api-collect.code-workspace 2 | 3 | .idea 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/README.md -------------------------------------------------------------------------------- /files/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/files/images/logo.png -------------------------------------------------------------------------------- /genshin_impact/thirdparty/dictionary_of_item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/genshin_impact/thirdparty/dictionary_of_item.md -------------------------------------------------------------------------------- /genshin_impact/thirdparty/historical_up_items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/genshin_impact/thirdparty/historical_up_items.md -------------------------------------------------------------------------------- /hoyolab/article/article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/article/article.md -------------------------------------------------------------------------------- /hoyolab/forum/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/forum/info.md -------------------------------------------------------------------------------- /hoyolab/login/password_hoyolab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/login/password_hoyolab.md -------------------------------------------------------------------------------- /hoyolab/login/password_passport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/login/password_passport.md -------------------------------------------------------------------------------- /hoyolab/login/qrcode_hk4e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/login/qrcode_hk4e.md -------------------------------------------------------------------------------- /hoyolab/login/qrcode_hoyolab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/login/qrcode_hoyolab.md -------------------------------------------------------------------------------- /hoyolab/login/sms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/login/sms.md -------------------------------------------------------------------------------- /hoyolab/user/game_account_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/user/game_account_info.md -------------------------------------------------------------------------------- /hoyolab/user/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/user/info.md -------------------------------------------------------------------------------- /hoyolab/user/token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/hoyolab/user/token.md -------------------------------------------------------------------------------- /other/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/other/authentication.md -------------------------------------------------------------------------------- /other/error_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/other/error_code.md -------------------------------------------------------------------------------- /other/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/other/id.md -------------------------------------------------------------------------------- /other/launcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/other/launcher.md -------------------------------------------------------------------------------- /other/pay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UIGF-org/mihoyo-api-collect/HEAD/other/pay.md --------------------------------------------------------------------------------