1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class NetWorkHeadersConfig
- {
- //public const string Remote_Net_url = "http://192.168.202.36:8899";
- //public const string Remote_SocketHall_url = "wss://cgdemo.shadowcreator.com:8072/lobby?";
- //public const string Remote_SocketRtc_url = "wss://cgdemo.shadowcreator.com:8072/room?";
- //public const string Remote_Net_url = "https://webapi-fat.shadowcreator.com/100032";
- //public const string Remote_SocketHall_url = "wss://cloud-assistant.shadowcreator.com/fatlobby/?";
- //public const string Remote_SocketRtc_url = "wss://cloud-assistant.shadowcreator.com/fatroom/?";
- //public const string Remote_Net_url = "https://webapi-uat.shadowcreator.com/100032";
- //public const string Remote_SocketHall_url = "wss://cloud-assistant.shadowcreator.com/uatlobby?";
- //public const string Remote_SocketRtc_url = "wss://cloud-assistant.shadowcreator.com/uatroom?";
- //public const string Remote_Net_url = "https://webapi.shadowcreator.com/100032";
- //public const string Remote_SocketHall_url = "wss://cloud-assistant.shadowcreator.com/lobby?";
- //public const string Remote_SocketRtc_url = "wss://cloud-assistant.shadowcreator.com/room?";
- public static string Remote_Net_url {
- get {
- if(HttpSDKAction.Instance.loginUrl=="")
- {
- HttpSDKAction.Instance.loginUrl = "https://support.ghz-tech.com:8843/api/";
- }
- return HttpSDKAction.Instance.loginUrl; }
- }
- // public const string Remote_Net_url = "https://support.ghz-tech.com:8843/api/";
- //public const string Remote_SocketHall_url = "wss://api-cs.ghz-tech.com/remote-lobby/?";
- //public const string Remote_SocketRtc_url = "wss://api-cs.ghz-tech.com/remote-room/?";
- public static string Remote_SocketHall_url
- {
- get
- {
- if (HttpSDKAction.Instance.officeSocket == "")
- {
- HttpSDKAction.Instance.officeSocket = "wss://support.ghz-tech.com:8843/lobby/?";
- }
- return HttpSDKAction.Instance.officeSocket;
- }
- }
- public static string Remote_SocketRtc_url
- {
- get
- {
- if (HttpSDKAction.Instance.roomSocket == "")
- {
- HttpSDKAction.Instance.roomSocket = "wss://support.ghz-tech.com:8843/room/?";
- }
- return HttpSDKAction.Instance.roomSocket;
- }
- }
- }
|