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

25 lines
756 B

  1. package tpdaren
  2. //剧集列表接口
  3. func TheaterFindPaging(token string, param map[string]interface{}) (string, error) {
  4. send, err := TpdarenSend("theater/find/paging", token, param)
  5. return send, err
  6. }
  7. //订单拉取接口
  8. func OrderFindPaging(token string, param map[string]interface{}) (string, error) {
  9. send, err := TpdarenSend("order/find/paging", token, param)
  10. return send, err
  11. }
  12. //广告统计接口
  13. func AdStatisticFindPaging(token string, param map[string]interface{}) (string, error) {
  14. send, err := TpdarenSend("ad/statistic/find/paging", token, param)
  15. return send, err
  16. }
  17. func ShortLinkCreate(token string, param map[string]interface{}) (string, error) {
  18. send, err := TpdarenSend("short/link/create", token, param)
  19. return send, err
  20. }