# Get Half Screen Mini Program Licensing List
Interface should be called on the server side, seeHattori API。
# Interface Dxplaination
# Interface name
getOwnList
# Functional description
Call this interface can get a half-screen Mini Program authorization list, if you encounter problems in the process, you canOpen Platform Service Provider ZonePosting exchanges.
Description: a half-screen Mini Program can be authorized to 1000 Mini Program calls, through which you can get a list of authorized Mini Program
# Calling mode
# HTTPS call
GET https://api.weixin.qq.com/wxaapi/wxaembedded/get_own_list?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 |
start | number | no | Query parameter, paging start value , the default value is 0 |
num | number | no | Query argument, one pull the maximum value, the maximum 1000, the default value is 10 |
# Return parameters
attribute | type | Introductions | |||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errcode | number | Error code | |||||||||||||||||||||||||||||
errmsg | string | Error message | |||||||||||||||||||||||||||||
wxa_embedded_list | array | List of half-screen Mini Programs | |||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
embedded_flag | number | Way of authorization. 0 means administrator confirmation, 1 means automatic pass, 2 means automatic reject |
# Other Notes
# Half screen Mini Program application status status The enumeration value of the
value | Introductions |
---|---|
1 | To be verified |
2 | Adopted |
3 | Rejected |
4 | Timeout |
5 | Withdrawn |
6 | Deauthorization |
# Call Example
Example Dxplaination: HTTPS Request Example
# Sample Request Data
GET https://api.weixin.qq.com/wxaapi/wxaembedded/get_own_list?access_token=ACCESS_TOKEN&start = 0&num=10
# Return Data Example
{
"errcode": 0,
"errmsg": "ok",
"embedded_flag": 2,
"wxa_embedded_list": []
}
# Error code
Error code | Error code | Solutions |
---|---|---|
0 | ok | ok |
89408 | Half-screen Mini Program system error | |
89409 | Getting Half-Screen Mini Program List Parameter Error |