当前位置: 首页>>代码示例>>Golang>>正文


Golang Client.PostXML方法代码示例

本文整理汇总了Golang中github.com/chanxuehong/wechat/v2/mch/core.Client.PostXML方法的典型用法代码示例。如果您正苦于以下问题:Golang Client.PostXML方法的具体用法?Golang Client.PostXML怎么用?Golang Client.PostXML使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/chanxuehong/wechat/v2/mch/core.Client的用法示例。


在下文中一共展示了Client.PostXML方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: ShortURL

// 转换短链接.
func ShortURL(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/tools/shorturl", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:4,代码来源:shorturl.go

示例2: SendCoupon

// 发放代金券.
//  请求需要双向证书
func SendCoupon(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.core.weixin.qq.com/mmpaymkttransfers/send_coupon", req)
}
开发者ID:yansuan,项目名称:wechat.v2,代码行数:5,代码来源:send_coupon.go

示例3: Refund

// 申请退款.
//  NOTE: 请求需要双向证书.
func Refund(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/secapi/pay/refund", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:5,代码来源:refund.go

示例4: GetTransferInfo

// 查询企业付款.
//  NOTE: 请求需要双向证书
func GetTransferInfo(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/mmpaymkttransfers/gettransferinfo", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:5,代码来源:gettransferinfo.go

示例5: MicroPay

// 提交刷卡支付.
func MicroPay(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/pay/micropay", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:4,代码来源:scanned.go

示例6: OrderQuery

// 查询订单.
func OrderQuery(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/pay/orderquery", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:4,代码来源:orderquery.go

示例7: QueryCoupon

// 查询代金券信息.
func QueryCoupon(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.core.weixin.qq.com/promotion/query_coupon", req)
}
开发者ID:yansuan,项目名称:wechat.v2,代码行数:4,代码来源:query_coupon.go

示例8: Transfers

// 企业付款.
//  NOTE: 请求需要双向证书
func Transfers(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:5,代码来源:transfers.go

示例9: QueryCouponStock

// 查询代金券批次信息.
func QueryCouponStock(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/mmpaymkttransfers/query_coupon_stock", req)
}
开发者ID:xiaomuqiao,项目名称:wechat.v2,代码行数:4,代码来源:query_coupon_stock.go

示例10: AuthCodeToOpenId

// 授权码查询OPENID接口.
func AuthCodeToOpenId(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/tools/authcodetoopenid", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:4,代码来源:authcodetoopenid.go

示例11: SendRedPack

// 红包发放.
//  NOTE: 请求需要双向证书
func SendRedPack(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:5,代码来源:sendredpack.go

示例12: CloseOrder

// 关闭订单.
func CloseOrder(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/pay/closeorder", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:4,代码来源:common.go

示例13: Report

// 测速上报.
func Report(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.mch.weixin.qq.com/payitil/report", req)
}
开发者ID:btbxbob,项目名称:wechat,代码行数:4,代码来源:report.go

示例14: RefundQuery

// 查询退款.
func RefundQuery(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.core.weixin.qq.com/pay/refundquery", req)
}
开发者ID:yansuan,项目名称:wechat.v2,代码行数:4,代码来源:common.go

示例15: UnifiedOrder

// 统一下单.
func UnifiedOrder(clt *core.Client, req map[string]string) (resp map[string]string, err error) {
	return clt.PostXML("https://api.core.weixin.qq.com/pay/unifiedorder", req)
}
开发者ID:yansuan,项目名称:wechat.v2,代码行数:4,代码来源:common.go


注:本文中的github.com/chanxuehong/wechat/v2/mch/core.Client.PostXML方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。