I have the C# Facebook SDK setup to authenticate users but I noticed the this line of code...
var oAuthClient = new FacebookOAuthClient(FacebookApplication.Current);
....
var uri = oAuthClient.GetLoginUrl(new Dictionary<string, object> { { "state", returnUrl }, { "scope", "email,publish_stream,offline_access" }, { "display", "popup" } });
...does not return a secure url (no https). I have been research this but I can't find a way to get it secure.
Any help is appreciated.
Thanks