123456789101112131415161718192021222324 |
- <?php
- return [
- 'config' => [
- 'app_id' => '',
- 'secret' => ''
- ],
- 'stable_token' => 'https://api.weixin.qq.com/cgi-bin/stable_token',
- 'access_token' => 'https://api.weixin.qq.com/cgi-bin/token',
- 'goods_list' => 'https://api.weixin.qq.com/channels/ec/league/headsupplier/item/list/get?access_token=',# 获取结构合作商品ID列表
- 'goods_info' => 'https://api.weixin.qq.com/channels/ec/league/headsupplier/item/get?access_token=',# 获取机构合作商品详情
- 'promote_goods_list' => 'https://api.weixin.qq.com/channels/ec/promoter/get_promote_product_list?access_token=',# 获取推客可推广的商品ID列表
- 'promote_goods_info' => 'https://api.weixin.qq.com/channels/ec/promoter/get_promote_product_detail?access_token=',# 获取推客可推广的商品详情
- 'order_list' => 'https://api.weixin.qq.com/channels/ec/league/headsupplier/order/list/get?access_token=',# 获取佣金单列表
- 'order_info' => 'https://api.weixin.qq.com/channels/ec/league/headsupplier/order/get?access_token=',# 获取佣金单详情
- 'promote_link_info' => 'https://api.weixin.qq.com/channels/ec/promoter/get_product_promotion_link_info?access_token=',# 获取推客推广链接
- 'promote_goods_commission' => 'https://api.weixin.qq.com/channels/ec/promoter/get_sharer_product_commission_info?access_token=',# 获取设置的推客单个商品的佣金比例
- # 获取推客的注册状态,以及和机构的绑定状态
- 'get_promoter_register_and_bind_status' => 'https://api.weixin.qq.com/channels/ec/promoter/get_promoter_register_and_bind_status?access_token=',
- # 获取已经绑定的推客信息
- 'get_promoter_list' => 'https://api.weixin.qq.com/channels/ec/promoter/get_bind_sharer_list?access_token=',
- # 获取微信小程序用户信息
- 'code2session' => 'https://api.weixin.qq.com/sns/jscode2session?',
- ];
|