第三方api接口
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 년 전
123456789
  1. package gzmiyuan
  2. import (
  3. zhios_third_party_utils "code.fnuoos.com/go_rely_warehouse/zyos_go_third_party_api.git/utils"
  4. )
  5. func SendReq(urls string, params map[string]string) ([]byte, error) {
  6. return zhios_third_party_utils.CurlPost(urls, zhios_third_party_utils.Serialize(params), map[string]string{"content-type": "application/json"})
  7. }