encryptedPhone
, 解密流程伪代码如下:List<String> array = Splitter.on(":").splitToList(encryptedPhone);
byte[] iv = Base64.decodeBase64(array.get(0));
String cipherPhone = array.get(1);
byte[] decryptBytes = AESCBCFixedIVCoder.of(Base64.decodeBase64(appSecret), iv).decrypt(cipherPhone);
String plainPhone = new String(decryptBytes, "utf-8");
curl --location --request GET 'https://open.kuaishou.com/openapi/user_phone?app_id=&access_token='
{
"result": 1,
"encrypted_phone": "xxxxxx"
}