30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
package meituan
|
|
|
|
// 相关地址
|
|
const (
|
|
SiteDomain = "https://media.meituan.com" // Domain 后台域名
|
|
SiteUrl = "https://media.meituan.com/pc/index.html#/account/qualification/view" // SiteUrl 后台地址
|
|
DocUrl = "https://media.meituan.com/pc/index.html#/help" // DocUrl 文档地址
|
|
ApiDocUrl = "https://media.meituan.com/pc/index.html#/materials/api" // ApiDocUrl api文档地址
|
|
)
|
|
|
|
// 接口地址
|
|
const (
|
|
ApiDomain = "https://media.meituan.com" //
|
|
GetLinkUri = "/cps_open/common/api/v1/get_referral_link"
|
|
GetOrderListUri = "/cps_open/common/api/v1/query_order"
|
|
GetProductListUri = "/cps_open/common/api/v1/query_coupon"
|
|
GetLinkUrl = ApiDomain + GetLinkUri
|
|
GetOrderListUrl = ApiDomain + GetOrderListUri
|
|
GetProductListUrl = ApiDomain + GetProductListUri
|
|
)
|
|
|
|
// header头信息
|
|
const (
|
|
SCaApp = "S-Ca-App"
|
|
SCaTimestamp = "S-Ca-Timestamp"
|
|
ContentMd5 = "Content-MD5"
|
|
SCaSignature = "S-Ca-Signature"
|
|
SCaSignatureHeaders = "S-Ca-Signature-Headers"
|
|
)
|