# Query Mini Program version information

Debugging tools

Interface should be called on the server side, seeHattori API

# Interface Dxplaination

# Interface name

getVersionInfo

# Functional description

  • Call this interface can query the Mini Program experience version and online version information. If you encounter problems during use, you canOpen Platform Service Provider ZonePosting exchanges.

  • Note: If you need to query the version information in the audit can be obtained through the getLatestAuditStatus interface.

# Calling mode

# HTTPS call


POST https://api.weixin.qq.com/wxa/getversioninfo?access_token=ACCESS_TOKEN 

# Third Party Invocation

  • The calling method and parameters are the same as HTTPS, only the calling token is different

  • The permission set id to which this interface belongs is: 18

  • After the service provider has been authorized with one of the permission sets, it can do so by usingauthorizer_access_TokenCalling on behalf of the merchant

# Request parameters

attribute type Required Introductions
access_Token string yes Interface invokes the certificate, which is URL Parameters, non Body Parameters. useauthorizer_access_Token

# Return parameters

attribute typeIntroductions
errcode number Return code
errmsg string Error message
exp_info object Experience Edition Information
attribute type Introductions
exp_time number Time to submit the demo version
exp_version string Demo version information
exp_desc string Demo version description
release_info object Online version information
attribute type Introductions
release_time number Time to release the online version
release_version string Online version information
release_desc string Online version description

# Other Notes

  • To pass an empty json, do not pass will report an error

# Call Example

Example Dxplaination: HTTPS requests

# Sample Request Data


{

} 

# Return Data Example


{
    "errcode": 0,
    "errmsg": "ok",
    "exp_info": {
        "exp_time": 初始值
        "exp_version": "V1.0",
        "exp_Desc": "test"
    },
    "release_info": {
        "release_time": 1640763902,
        "release_version": "V1.5",
        "release_Desc": "test"
    }
} 

# Error code

Error code Error code Solutions
初始值 system error The system is busy, please wait for the developer to try again
0 ok ok
44002 empty post data POST The packet is empty.