Hi All,
I was able to access the API successfully. This is the code to generate the password (Many thanks to Yan for heading me in the right direction)
Use the shared secret and the t value in order to generate the password.
// Available in the app admin panel.
String shared_secret = "
8545sddcfb980d5df2345sdfs533e352 ";
// Extracted from the App url
String t = "a94a110d86d2452eb3e2af4cfb8a8542";
String input =
shared_secret + t;
System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[] bs = System.Text.Encoding.UTF8.GetBytes(input);
bs = x.ComputeHash(bs);
System.Text.StringBuilder s = new System.Text.StringBuilder();
foreach (byte b in bs)
{
s.Append(b.ToString("x2").ToLower());
}
string password = s.ToString();
Thanks.