Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

There is a common problem on using Facebook like button or box, on using pagespeed online sevice by Google I get this : Serve resources from a consistent URL The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save 1 request(s) and 25.3KiB. - http://static.ak.facebook.com/connect/xd_arbiter.php?version=7 - https://s-static.ak.facebook.com/connect/xd_arbiter.php?version=7

it is obvious that one is for secured ssl connection and other is for unsecured connection is there any possible way to make facebook load just one?

share|improve this question
Wait, what are you trying to do? Why not use the og:url meta tag to tell facebook one of the URLs is canonical? – Igy Jun 12 '12 at 15:14
i am trying to post like button and box will this og remove this error? – AbdelRahman Ellithy Jun 12 '12 at 15:30
I am using html5 – AbdelRahman Ellithy Jun 12 '12 at 15:31
I don't understand your problem - if you have two places you are accessing the same content, redirect users from one to the other - the og:url suggestion achieves the same effect for Facebook shares or likes of your links - it causes facebook to treat the two links as the same (i.e whichever URL is contained in the og:url tag is canonical, and the pages which CONTAIN the og:url are possible ways of accessing that URL's contents) – Igy Jun 12 '12 at 15:35
the problem is from facebook itself :) I added the og:url and it also loads both files this is in all websites not just mine and I am asking if there is a way to make facebook load just one see this developers.google.com/speed/pagespeed/… – AbdelRahman Ellithy Jun 12 '12 at 15:42
show 3 more comments

This question has an open bounty worth +300 reputation from tirengarfio ending in 4 days.

Looking for an answer drawing from credible and/or official sources.

1 Answer

js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";

I suppose problem is here.

you may try to add http: to avoid connection to https:

I do not tested and can't confirm it helps or raise some issues to like button

share|improve this answer
2  
I just thought like you :) tried it in both ways, http and https...any way...both are loaded – AbdelRahman Ellithy Jun 13 '12 at 17:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.