# 获取基本信息
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/product/store/get_info?access_token=xxxxxxxxx
# 请求参数示例
无
# 回包示例
{
"errcode": 0,
"errmsg": "ok",
"data": {
"store_name": "xxx商城",
"logo": "http://xxxx.png",
"type": 1
}
}
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
data.store_name | string | 商店名称 |
data.logo | string | 商店头像 |
data.type | number | 1: 企业店, 2: 个人店 |