WeChat Enterprise Account Development: Encryption Scheme and Global Return Code Description

WeChat Enterprise Account Development: Encryption Scheme and Global Return Code Description

This article includes the detailed scheme for encryption and decryption when the enterprise account calls back to the enterprise, the download of libraries and sample codes, and the error codes returned by the enterprise account API interface.

1. Detailed description of encryption and decryption scheme

1. Terminology and description

When enabling callback mode, there are the following terms to understand:

1) msg_signature is a signature used to verify the legitimacy of the caller

2) EncodingAESKey is used to encrypt the message body. The length is fixed at 43 characters. It is selected from az, AZ, 0-9, a total of 62 characters. It is the Base64 encoding of AESKey. After decoding, it is a 32-byte AESKey.

3) AESKey = Base64_Decode (EncodingAESKey + "="), which is the key of the AES algorithm, with a length of 32 bytes. AES uses CBC mode, and the data is padded with PKCS#7; the size of the IV initial vector is 16 bytes, which is the first 16 bytes of AESKey. For details, see: http://tools.ietf.org/html/rfc2315

4) msg ​​is the plain text of the message body, in XML format

5) msg_encrypt = Base64_Encode( AES_Encrypt[random(16B) + msg_len(4B) + msg + $CorpID] ), is the Base64 encoding of the encrypted plaintext message msg

2. Message body signature

In order to verify the legitimacy of the caller, WeChat adds a message signature to the callback URL, marked by the parameter msg_signature. Enterprises need to verify the correctness of this parameter before decrypting it. Verification steps:

1) Enterprise calculation signature: dev_msg_signature = sha1(sort(Token, timestamp, nonce, msg_encrypt)). The meaning of sort is to sort the parameters in alphabetical order and then concatenate them into a string from small to large.

2) Compare dev_msg_signature and msg_signature to see if they are equal. If they are equal, verification is successful.

3. Encryption and decryption scheme description

  • The process of encrypting the plaintext msg is as follows:

msg_encrypt = Base64_Encode( AES_Encrypt[random(16B) + msg_len(4B) + msg + $CorpID] )

The AES encrypted buf consists of a 16-byte random string, a 4-byte msg length, plain text msg, and $CorpID. Among them, msg_len is the number of bytes of msg, in network byte order; $CorpID is the CorpID of the enterprise number. After being encrypted by AESKey, it is then Base64 encoded to obtain the ciphertext msg_encrypt.

  • Corresponding to the encryption scheme, the decryption scheme is as follows:

1) Decode the ciphertext BASE64: aes_msg=Base64_Decode(msg_encrypt)

2) Use AESKey to do AES decryption: rand_msg = AES_Decrypt(aes_msg)

3) Verify the decrypted $CorpID, msg_len

4) Remove the 16 random bytes at the head of rand_msg, the 4 bytes of msg_len, and the $CorpID at the end to get the final message body msg.

#p#

2. Download encryption and decryption library and return code

1. Return code of encryption and decryption library

Return Code illustrate
0 Request Success
-40001 Signature verification error
-40002 XML parsing failed
-40003 sha encryption signature generation failed
-40004 AESKey is invalid
-40005 corpid validation error
-40006 AES encryption failed
-40007 AES decryption failed
-40008 The buffer obtained after decryption is illegal
-40009 base64 encryption failed
-40010 base64 decryption failed
-40011 Failed to generate xml

2. Download encryption and decryption library and examples

  • C++ library (click to download)

Note:

1) WXBizMsgCrypt.h declares the WXBizMsgCrypt class, which provides three interfaces for users to access WeChat for Business. The WXBizMsgCrypt.cpp file provides the implementation of the three interfaces. The Sample.cpp file provides examples of how to use the three interfaces.

2) The WXBizMsgCrypt class encapsulates the three interfaces of VerifyURL, DecryptMsg, and EncryptMsg, which are used by developers to verify the callback URL, decrypt the user's reply message, and encrypt the developer's reply message. For usage, please refer to the Sample.cpp file.

3) For the encryption and decryption protocols, please refer to the official WeChat Enterprise documentation.

4) The encryption and decryption process uses the open source openssl and tinyxml2 libraries. Developers are requested to install them before use.

*The version number of openssl is openssl-1.0.1h, http://www.openssl.org/

*The version number of tinyxml2 is tinyxml2-2.1.0, https://github.com/leethomason/tinyxml2

  • Python library (click to download)

Note:

1) The WXBizMsgCrypt.py file encapsulates the WXBizMsgCrypt interface class and provides three interfaces for users to access WeChat for Business. The Sample.py file provides examples of how to use these three interfaces, and ierror.py provides error codes.

2) WXBizMsgCrypt encapsulates the three interfaces of VerifyURL, DecryptMsg, and EncryptMsg, which are used by developers to verify the callback URL, decrypt received messages, and encrypt developer reply messages. For usage, please refer to the Sample.py file.

3) This code uses the pycrypto third-party library. Developers are requested to install this library before using it.

  • PHP library (click to download)

Note:

1) The WXBizMsgCrypt.php file provides the implementation of the WXBizMsgCrypt class, which is the interface class for users to access enterprise WeChat. Sample.php provides examples for developers to refer to. errorCode.php, pkcs7Encoder.php, sha1.php, xmlparse.php files are auxiliary classes for implementing this class, and developers do not need to care about their specific implementation.

2) The WXBizMsgCrypt class encapsulates the three interfaces of VerifyURL, DecryptMsg, and EncryptMsg, which are used by developers to verify the callback URL, decrypt received messages, and encrypt developer reply messages. For usage, please refer to the Sample.php file.

  • Java library (click to download)

Note:

1) The com\qq\weixin\mp\aes directory contains the interfaces that users need to use to access WeChat for Business. The WXBizMsgCrypt class provided by the WXBizMsgCrypt.java file encapsulates the three interfaces for users to access WeChat for Business. Other class files are used by users to implement encryption and decryption, and users do not need to care about them. The sample.java file provides examples of how to use the interface.

2) WXBizMsgCrypt encapsulates the three interfaces of VerifyURL, DecryptMsg, and EncryptMsg, which are used by developers to verify the callback URL, decrypt received messages, and encrypt developer reply messages. For usage, please refer to the Sample.java file.

3) Developers are requested to use jdk1.7 or above. For org.apache.commons.codec.binary.Base64, you need to import the jar package commons-codec-1.9 (or other versions such as commons-codec-1.8), which we have provided. The official download address is:

http://commons.apache.org/proper/commons-codec/download_codec.cgi

4) Solution to the exception java.security.InvalidKeyException:illegal Key Size:

Download the JCE unlimited permissions policy file from the official website (download address for JDK7:

http://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html

After downloading and unzipping, you can see local_policy.jar, US_export_policy.jar and readme.txt. If JRE is installed, put the two jar files in the %JRE_HOME%\lib\security directory to overwrite the original files. If JDK is installed, put the two jar files in the %JDK_HOME%\jre\lib\security directory to overwrite the original files.

  • C# library (click to download)

Note:

1) The Cryptography.cs file encapsulates the AES encryption and decryption process, and users do not need to care about the specific implementation. The WXBizMsgCrypt.cs file provides three interfaces for users to access WeChat for Business, and the Sample.cs file provides examples of how to use these three interfaces.

2) WXBizMsgCrypt.cs encapsulates the three interfaces of VerifyURL, DecryptMsg, and EncryptMsg, which are used by developers to verify the callback URL, decrypt the received message, and encrypt the developer's reply message. For usage, please refer to the Sample.cs file.

#p#

3. Global return code description

Each time an enterprise calls an interface, it may get a correct or incorrect return code. The enterprise can debug the interface and troubleshoot errors based on the return code information.

The global return codes are described as follows:

Return Code illustrate
-1 System busy
0 Request Success
40001 The Secret is incorrect when obtaining access_token, or the access_token is invalid.
40002 Invalid credential type
40003 Invalid UserID
40004 Invalid media file type
40005 Invalid file type
40006 Invalid file size
40007 Invalid media file id
40008 Invalid message type
40013 Illegal corpid
40014 Invalid access_token
40015 Invalid menu type
40016 Invalid number of buttons
40017 Invalid button type
40018 Invalid button name length
40019 Invalid button key length
40020 Invalid button URL length
40021 Invalid menu version number
40022 Invalid number of submenu levels
40023 Invalid number of submenu buttons
40024 Invalid submenu button type
40025 Invalid submenu button name length
40026 Invalid submenu button KEY length
40027 Invalid submenu button URL length
40028 Illegal custom menu use by employees
40029 Invalid oauth_code
40031 Invalid UserID List
40032 Invalid UserID list length
40033 Illegal request characters, cannot contain characters in the \uxxxx format
40035 Invalid parameters
40038 Invalid request format
40039 Invalid URL length
40040 Invalid plugin token
40041 Invalid plugin id
40042 Invalid plugin session
40048 The URL contains an invalid domain
40054 Invalid submenu URL domain name
40055 Invalid button URL domain name
40056 Invalid agentid
40057 Invalid callback url
40058 Illegal red envelope parameters
40059 Illegal reporting of geographic location markers
40060 No callback url is set when reporting geographic location flag
40061 Failed to set application avatar
40062 Illegal application mode
40063 The red envelope parameter is empty
40064 The management group name already exists
40065 Invalid management group name length
40066 Illegal department list
40067 Invalid title length
40068 Invalid tag ID
40069 List of invalid tag IDs
40070 All tag (user) IDs in the list are invalid
40071 Invalid tag name. The tag name already exists.
40072 Invalid tag name length
40073 Invalid openid
40074 news messages cannot be specified as highly confidential messages
41001 The access_token parameter is missing
41002 The corpid parameter is missing
41003 Missing refresh_token parameter
41004 Missing secret parameter
41005 Missing multimedia file data
41006 Missing media_id parameter
41007 Submenu data missing
41008 Missing oauth code
41009 Missing UserID
41010 Missing URL
41011 Missing agentid
41012 Missing application avatar mediaid
41013 Missing application name
41014 Missing app description
41015 Missing Content
41016 Missing title
41017 Missing tag ID
41018 Missing tag name
42001 access_token timeout
42002 refresh_token timeout
42003 oauth_code timeout
42004 Plugin token timeout
43001 GET request required
43002 Requires a POST request
43003 Require HTTPS
43004 Requires attention from the recipient
43005 Requires friendship
43006 Subscription required
43007 Authorization required
43008 Payment authorization required
43009 Requires certification
43010 Need to be in callback mode
43011 Requires enterprise authorization
44001 The multimedia file is empty
44002 The POST data packet is empty
44003 The message content is empty
44004 The text message content is empty
45001 The multimedia file size exceeds the limit
45002 The message content exceeds the limit
45003 The title field exceeds the limit
45004 Description field exceeds limit
45005 Link field exceeds limit
45006 The image link field exceeds the limit
45007 The voice playback time exceeds the limit
45008 Text message limit exceeded
45009 Interface call exceeds limit
45010 The number of created menus exceeds the limit
45015 Reply time limit exceeded
45016 System grouping, modification is not allowed
45017 Group name is too long
45018 The number of groups exceeds the upper limit
46001 No media data exists
46002 Menu version that does not exist
46003 Menu data does not exist
46004 Non-existent employees
47001 Error parsing JSON/XML content
48002 Api Disable
50001 redirect_uri not authorized
50002 The employee is not within the scope of authority
50003 App disabled
50004 Incorrect employee status (not following status)
50005 Enterprise disabled
60001 The length of the department does not meet the limit
60002 The department level depth exceeds the limit
60003 Department does not exist
60004 The father department does not exist
60005 Deleting a department with members is not allowed
60006 Deleting a department with sub-departments is not allowed
60007 Deleting the root department is not allowed
60008 Department name already exists
60009 The department name contains illegal characters
60010 There is a circular relationship between departments
60011 Insufficient administrator privileges, (user/department/agent) has no privileges
60012 Do not allow deletion of default apps
60013 Do not allow closing of application
60014 Do not allow opening of apps
60015 Modification of the default application visibility range is not allowed
60016 Deleting a tag that has existing members is not allowed
60017 Enterprise settings are not allowed
60102 UserID already exists
60103 Invalid mobile number
60104 Mobile number already exists
60105 Email is invalid
60106 Email already exists
60107 WeChat account is illegal
60108 WeChat ID already exists
60109 QQ number already exists
60110 The number of departments exceeds the limit
60111 UserID does not exist
60112 Invalid member name
60113 Identity authentication information (WeChat ID/mobile phone number/email address) cannot be empty at the same time
60114 Illegal sex

<<:  How to obtain OAuth2 authentication interface in WeChat Enterprise Account Development

>>:  Enterprise Accounts, Tencent’s corporate conspiracy

Recommend

Detailed explanation on how to make Tik Tok short video ads!

What I am going to share with you today is the ad...

Activity Analysis丨10 Yuan Storm Activity Analysis and Skill Sharing

China Merchants Bank’s Palm Storm was first launc...

Things to note when developing custom mini programs

We can observe from the WeChat platform that it n...

Yuan Chunnan's "Life Organizing Skills That Can Transform You"

Yuan Chunnan's "The Life Organizing Skil...

Four challenges you must consider when developing IoT devices

Introduction The Internet of Things is a buzzword...

What skills are needed to develop and operate WeChat mini programs?

At the 2017 WeChat Open Class Pro Conference, the...

How to survive programming 80+ hours a week?

I left my computer, walked into the bathroom, and...

Swift theme color top solution

1. Conventional theme color usage points Before a...

Typography in Material Design

Roboto Roboto has been the default font for Andro...