51 lines
1.4 KiB
Swift
51 lines
1.4 KiB
Swift
//
|
|
// SPURLPath.swift
|
|
// Thimra
|
|
//
|
|
// Created by 曾觉新 on 2025/4/8.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
/*
|
|
https://admin-thimratv.guyantv.com/login
|
|
|
|
https://api-thimratv.thimratv.com/0a2c5b02/
|
|
|
|
新app的web需要适配
|
|
https://thimratv.com/
|
|
https://www.thimratv.com/
|
|
https://campaign.thimratv.com/
|
|
*/
|
|
|
|
#if DEBUG
|
|
let SPBaseURL = "https://test1-api.guyantv.com"
|
|
let SPURLPathPrefix = ""
|
|
//let SPBaseURL = "https://api-thimratv.thimratv.com"
|
|
//let SPURLPathPrefix = "/0a2c5b02"
|
|
|
|
let SPWebBaseURL = "https://www.thimratv.com"
|
|
#else
|
|
let SPBaseURL = " https://api-thimratv.thimratv.com"
|
|
let SPURLPathPrefix = "/0a2c5b02"
|
|
let SPWebBaseURL = "https://www.thimratv.com"
|
|
#endif
|
|
|
|
|
|
///用户协议
|
|
let SPUserAgreementWebUrl = SPWebBaseURL + "/user_policy.htm"
|
|
///隐私协议
|
|
let SPPrivacyPolicyWebUrl = SPWebBaseURL + "/private.htm"
|
|
///儿童个人信息保护规则
|
|
let SPInformationProtectionWebUrl = SPWebBaseURL + "/information_protection.html"
|
|
///第三方共享清单
|
|
let SPInformationSharingWebUrl = SPWebBaseURL + "/information_sharing.html"
|
|
///收集个人信息明示清单
|
|
let SPPersoInforDisclosureWebUrl = SPWebBaseURL + "/persoInfor_disclosure.html"
|
|
///全国青少年互联网文明公约
|
|
let SPCivizatioConventionWebUrl = SPWebBaseURL + "/civizatio_convention.html"
|
|
///全国青少年互联网文明公约
|
|
let SPMemberShipAgreementWebUrl = SPWebBaseURL + "/member_ship_agreement.html"
|
|
|
|
|