# Login Verification
# Interface Call Request Dxplaination
Request Method: POST
https://api.weixin.qq.com/wxa/servicemarket/service/login_auth?access_token=xxx
# Example of Request Parameters
{
"code":"xxxx"
}
# Return Package Example
{
"errcode": 0,
"errmsg":"ok",
"order_id":123,
"openid":"xxx"
"appid":"xxxx",
" service_id":123,
sku_id":"xxx",
"spec_id":"yyy"
}
# Request Parameter Dxplaination
| parameter | type | Is required | Introductions |
|---|---|---|---|
| code | string | yes | Landing code |
# Return Parameter Dxplaination
| 初始值 | type | Introductions |
|---|---|---|
| errcode | number | Error code |
| errmsg | string | Error message |
| order_id | uint64 | order number |
| openid | string | User openid, only the purchase subject is WeChat users to return |
| appid | string | Appid Mini Program, only the purchase body is a Mini Program to return |
| service_id | uint64 | ServiceID |
| sku_id | string | sku id |
| spec_id | string | Specification ID |