第三方api接口
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.

30 lines
1.4 KiB

  1. package md
  2. type TikTokBase struct {
  3. AuthType string `json:"auth_type"`
  4. LiveAuthType string `json:"live_auth_type"`
  5. ApiGoodsAppKey string `json:"api_goods_app_key"`
  6. ApiGoodsAppSecret string `json:"api_goods_app_secret"`
  7. ApiTeamAppKey string `json:"api_team_app_key"`
  8. ApiTeamAppSecret string `json:"api_team_app_secret"`
  9. ApiLiveAppKey string `json:"api_live_app_key"`
  10. ApiLiveAppSecret string `json:"api_live_app_secret"`
  11. GoodsAccessToken string `json:"goods_access_token"`
  12. LiveAccessToken string `json:"live_access_token"`
  13. TeamAccessToken string `json:"team_access_token"`
  14. GoodsPid string `json:"goods_pid"`
  15. LivePid string `json:"live_pid"`
  16. SysApiGoodsAppKey string `json:"sys_api_goods_app_key"`
  17. SysApiGoodsAppSecret string `json:"sys_api_goods_app_secret"`
  18. SysApiTeamAppKey string `json:"sys_api_team_app_key"`
  19. SysApiTeamAppSecret string `json:"sys_api_team_app_secret"`
  20. SysApiLiveAppKey string `json:"sys_api_live_app_key"`
  21. SysApiLiveAppSecret string `json:"sys_api_live_app_secret"`
  22. SysGoodsAccessToken string `json:"sys_goods_access_token"`
  23. SysLiveAccessToken string `json:"sys_live_access_token"`
  24. SysGoodsPid string `json:"sys_goods_pid"`
  25. SysLivePid string `json:"sys_live_pid"`
  26. AuthSubjectType string `json:"auth_subject_type"`
  27. LiveAuthSubjectType string `json:"live_auth_subject_type"`
  28. }