Message encoding2022-11-10 05:59To prevent errors or ambiguity caused by special characters enclosed in a message, encode the message properly before the message is transmitted.Encoding scenarios Encoding methodFor the byte data, such as the signature and the encrypted content, encode the data with the base64 algorithm before transmitting.Via the base64 algorithmFor certain fields embedded in the HTTPS URL, encode the field before transmitting. For example: Original URL: https://testurl.com/test.html?key1=value1&key2=https://www.sampleurl.com/authorizationResultEncoded URL: https://testurl.com/test.html?key1=value1&key2=https%3A%2F%2Fwww.sampleurl.com%2FauthorizationResultIf such URLs are received, you need to decode the URLs before use.Note: This URL is only a sample and can not be used for requests. Via the urlencode