Meet the team behind ShepHertz Platform
Making a difference in the world together
People whose belief drives us forward
Enterprises & Developers from across the world
Access the ShepHertz Newsroom
800+ APIs. 25+ Modules. 16 SDKs.Real-time Actionable Analytics. 1 Platform.
Acquire. Engage. Retain. Convert.
Comprehensive Solution to Securely Expose Protected Resources as APIs
Real Time & Turn Based MultiplayerGaming Platform With Game Mechanics.
Develop > Deploy > launch > Scale > Monitor
Continuous Integration & Delivery
Customers Want A 360 °Omni-Channel Retail Experience.
Seamless & ConnectedOmni-Channel Experience Delivered.
Plethora of Games are LaunchedEvery Day. Don't Let Yours Die.
Leverage User Data to DeliverPersonalized Content Across Channels
Inspire Wanderlust in theCustomers with Omni-Channel Experience
800+ APIs. 25+ Modules. 16 SDKs. Real-time Actionable Analytics. 1 Platform.
Real Time & Turn Based Multiplayer Gaming Platform With Game Mechanics.
Forum
Hi Riovox,
In sync method, we use .net library for making an https connection with App42. For a security reason, mono does not allow to use https connection in Unity App. This problem occurs when you try to access the https connection using sync method.
Please use the code snippet to resolve the connection problem while you are making a connection with App42 in your Android app:
using System.Net; #if UNITY_EDITOR public static bool Validator (object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors) {return true;} #endif void Start () { #if UNITY_EDITOR ServicePointManager.ServerCertificateValidationCallback = Validator; #endif ServiceAPI serviceAPI = new ServiceAPI("KEY1","KEY2"); }
using System.Net;
#if UNITY_EDITOR
public static bool Validator (object sender, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors)
{return true;}
#endif
void Start ()
{
ServicePointManager.ServerCertificateValidationCallback = Validator;
ServiceAPI serviceAPI = new ServiceAPI("KEY1","KEY2");
}
Let me know if it helps.
Thanks.