We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, My authentication fails for the ids with live: in it. Any idea how to fix that?
HttpWebRequest MSNP24TokenRequest = parentSkype.mainFactory.createWebRequest_POST("https://api.skype.com/login/skypetoken", new string[][] { }, Encoding.ASCII.GetBytes(string.Format("scopes=client&clientVersion=0%2F7.4.85.102%2F259%2F&username={0}&passwordHash={1}", HttpUtility.UrlEncode(parentSkype.authInfo.Username.ToLower()), calculateHash(parentSkype.authInfo.Username.ToLower(), parentSkype.authInfo.Password).UrlEncode())), ""); string rawJSON = ""; using (HttpWebResponse webResponse = (HttpWebResponse)MSNP24TokenRequest.GetResponse())
The text was updated successfully, but these errors were encountered:
I think right now this is only working for the old skype login where you type your skype username only Example: Username: xain819 Password: *********
Sorry, something went wrong.
Is someone working on the fix for live: ids. I see some repo on github written in c which solved this issue. It will be great if we can also do that
@kunalsmehtagithub What was the repo that fixed it?
No branches or pull requests
Hi,
My authentication fails for the ids with live: in it. Any idea how to fix that?
HttpWebRequest MSNP24TokenRequest = parentSkype.mainFactory.createWebRequest_POST("https://api.skype.com/login/skypetoken", new string[][] { }, Encoding.ASCII.GetBytes(string.Format("scopes=client&clientVersion=0%2F7.4.85.102%2F259%2F&username={0}&passwordHash={1}", HttpUtility.UrlEncode(parentSkype.authInfo.Username.ToLower()), calculateHash(parentSkype.authInfo.Username.ToLower(), parentSkype.authInfo.Password).UrlEncode())), "");
string rawJSON = "";
using (HttpWebResponse webResponse = (HttpWebResponse)MSNP24TokenRequest.GetResponse())
The text was updated successfully, but these errors were encountered: