當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。