2024-04-30 17:57:27 +08:00
|
|
|
package meituan_union
|
|
|
|
|
|
2024-06-02 21:13:16 +08:00
|
|
|
// 相关地址
|
2024-04-30 17:57:27 +08:00
|
|
|
const (
|
2024-06-02 21:13:16 +08:00
|
|
|
SiteDomain = "https://union.meituan.com" // Domain 后台域名
|
|
|
|
|
SiteUrl = "https://union.meituan.com/v2/overview" // SiteUrl 后台地址
|
|
|
|
|
DocUrl = "https://union.meituan.com/single/helpCenter?id=44" // DocUrl 文档地址
|
|
|
|
|
ApiDocUrl = "https://union.meituan.com/single/helpCenter?id=44" // ApiDocUrl api文档地址
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 接口地址
|
|
|
|
|
const (
|
|
|
|
|
Domain = "https://openapi.meituan.com" // Domain api域名
|
2024-04-30 17:57:27 +08:00
|
|
|
GetLinkUrl = Domain + "/api/generateLink"
|
|
|
|
|
GetMiniCode = Domain + "/api/miniCode"
|
|
|
|
|
GetOrderSinge = Domain + "/api/order"
|
|
|
|
|
GetOrderBatch = Domain + "/api/orderList"
|
|
|
|
|
)
|