當前位置: 首頁>>代碼示例>>Golang>>正文


Golang mch.Proxy類代碼示例

本文整理匯總了Golang中github.com/chanxuehong/wechat/mch.Proxy的典型用法代碼示例。如果您正苦於以下問題:Golang Proxy類的具體用法?Golang Proxy怎麽用?Golang Proxy使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Proxy類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: MicroPay

// 提交被掃支付.
func MicroPay(proxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return proxy.PostXML("https://api.mch.weixin.qq.com/pay/micropay", req)
}
開發者ID:AddictXQ,項目名稱:wechat,代碼行數:4,代碼來源:client_scanned.go

示例2: Reverse

// 撤銷支付.
//  NOTE: 請求需要雙向證書.
func Reverse(proxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return proxy.PostXML("https://api.mch.weixin.qq.com/secapi/pay/reverse", req)
}
開發者ID:AddictXQ,項目名稱:wechat,代碼行數:5,代碼來源:client_scanned.go

示例3: Transfers

// 企業付款.
//  NOTE: 請求需要雙向證書
func Transfers(proxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return proxy.PostXML("https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers", req)
}
開發者ID:AddictXQ,項目名稱:wechat,代碼行數:5,代碼來源:transfers.go

示例4: SendRedPack

// 紅包發放.
//  NOTE: 請求需要雙向證書
func SendRedPack(pxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return pxy.PostXML("https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack", req)
}
開發者ID:Wang,項目名稱:wechat,代碼行數:5,代碼來源:sendredpack.go

示例5: CloseOrder

// 關閉訂單.
func CloseOrder(proxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return proxy.PostXML("https://api.mch.weixin.qq.com/pay/closeorder", req)
}
開發者ID:AddictXQ,項目名稱:wechat,代碼行數:4,代碼來源:client_common.go

示例6: RefundQuery

// 退款查詢.
func RefundQuery(proxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return proxy.PostXML("https://api.mch.weixin.qq.com/pay/refundquery", req)
}
開發者ID:AddictXQ,項目名稱:wechat,代碼行數:4,代碼來源:client_common.go

示例7: SendCoupon

// 發放代金券.
//  請求需要雙向證書
func SendCoupon(pxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return pxy.PostXML("https://api.mch.weixin.qq.com/mmpaymkttransfers/send_coupon", req)
}
開發者ID:Wang,項目名稱:wechat,代碼行數:5,代碼來源:send_coupon.go

示例8: GetRedPackInfo

// 紅包查詢接口.
//  NOTE: 請求需要雙向證書
func GetRedPackInfo(pxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return pxy.PostXML("https://api.mch.weixin.qq.com/mmpaymkttransfers/gethbinfo", req)
}
開發者ID:Wang,項目名稱:wechat,代碼行數:5,代碼來源:gethbinfo.go

示例9: OrderQuery

// 查詢訂單.
func OrderQuery(pxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return pxy.PostXML("https://api.mch.weixin.qq.com/pay/orderquery", req)
}
開發者ID:peterSZW,項目名稱:wechat,代碼行數:4,代碼來源:common.go

示例10: ShortURL

// 轉換短鏈接.
func ShortURL(pxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return pxy.PostXML("https://api.mch.weixin.qq.com/tools/shorturl", req)
}
開發者ID:Wang,項目名稱:wechat,代碼行數:4,代碼來源:shorturl.go

示例11: UnifiedOrder

// 統一下單.
func UnifiedOrder(pxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return pxy.PostXML("https://api.mch.weixin.qq.com/pay/unifiedorder", req)
}
開發者ID:peterSZW,項目名稱:wechat,代碼行數:4,代碼來源:common.go

示例12: QueryCoupon

// 查詢代金券信息.
func QueryCoupon(pxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return pxy.PostXML("https://api.mch.weixin.qq.com/promotion/query_coupon", req)
}
開發者ID:Wang,項目名稱:wechat,代碼行數:4,代碼來源:query_coupon.go

示例13: QueryCouponStock

// 查詢代金券批次信息.
func QueryCouponStock(proxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return proxy.PostXML("https://api.mch.weixin.qq.com/mmpaymkttransfers/query_coupon_stock", req)
}
開發者ID:AddictXQ,項目名稱:wechat,代碼行數:4,代碼來源:query_coupon_stock.go

示例14: Report

// 測速上報.
func Report(pxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return pxy.PostXML("https://api.mch.weixin.qq.com/payitil/report", req)
}
開發者ID:Wang,項目名稱:wechat,代碼行數:4,代碼來源:report.go

示例15: AuthCodeToOpenId

// 授權碼查詢OPENID接口.
func AuthCodeToOpenId(pxy *mch.Proxy, req map[string]string) (resp map[string]string, err error) {
	return pxy.PostXML("https://api.mch.weixin.qq.com/tools/authcodetoopenid", req)
}
開發者ID:Wang,項目名稱:wechat,代碼行數:4,代碼來源:authcodetoopenid.go


注:本文中的github.com/chanxuehong/wechat/mch.Proxy類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。