第三方api接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 months ago
123456789101112
  1. package jd_union
  2. import zhios_third_party_utils "code.fnuoos.com/go_rely_warehouse/zyos_go_third_party_api.git/utils"
  3. func JdUrl(keyArr map[string]string, goodsReq map[string]interface{}) (string, error) {
  4. param := map[string]interface{}{
  5. "promotionCodeReq": goodsReq,
  6. }
  7. paramJson := zhios_third_party_utils.SerializeStr(param)
  8. send, err := SendGet(keyArr, "jd.union.open.promotion.byunionid.get", paramJson, "1.0")
  9. return send, err
  10. }