Hello,
I am having an issue with the API method requestAuthCode("username", "password", out value),
Up until recently the method returned an authCode that I then use to request the Pin code. Now when I debug this method it is returning a null value.
1) the password and username are good.
2) the connection to the API web service is okay also
What might be the problem? Here is my code:
public string GetSession(){string authCode = string.Empty;int pinCode = 0;string opt = string.Empty; logMeIn.requestAuthCode("user", "password", out authCode);logMeIn.requestPINCode(opt, opt, opt, opt, opt, opt, opt, true, authCode, out pinCode);return "https://secure.logmeinrescue.com/R?i=2&Code=" + pinCode.ToString();} Pin cde is 0 because the authcode is null. Thanks in advanceJohn