Hello,
I have a secure(https) page where members of my site may log in.
Recently I added ability for members to sign in using GFC.
Now, every time visitor open this page, he gets warning:
"Although this page is encrypted, the information you have entered is
to be sent over an unencrypted connection and could easily be read by
a third party. Are you sure you want to continue?"
I switched "
http://www.google.com/jsapi" to "
https://www.google.com/
jsapi" but it doesn't help.
My code:
<script language="JavaScript" src="
https://www.google.com/jsapi">
<script>
google.load('friendconnect', '0.8');
google.setOnLoadCallback(googleCallback);
function googleCallback() {
google.friendconnect.container.initOpenSocialApi( ...
</script>
Two questions:
1) Any way to avoid this message? (server-side, of course)
2) If no, will be this feature added in next release?
wbr, George