You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jd/get.go

28 lines
487 B

package jd
import "go.dtapp.net/golog"
// GetAppKey 应用Key
func (c *Client) GetAppKey() string {
return c.config.appKey
}
// GetSecretKey 密钥
func (c *Client) GetSecretKey() string {
return c.config.secretKey
}
// GetSiteId 网站ID/APP ID
func (c *Client) GetSiteId() string {
return c.config.siteId
}
// GetPositionId 推广位id
func (c *Client) GetPositionId() string {
return c.config.positionId
}
func (c *Client) GetLog() *golog.ApiClient {
return c.log.client
}