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.

I have registered a app in facebook for my website. I ask users on my site to login through facebook username. I went to facebook apps and registered my app and website and it generated a id and secret id. If i give http://www.example.com and use the id generated then if the user opens my site with url as http://www.example.com then they are able to login but if they type url as http://example.com then while login through facebook it shows an error.

To understand better i changed the URL on the facebook app and made it as http://example.com then users are able to login on my website when they type url as http://example.com and when they type http://www.example.com then they are not able to login(facebook shows an error).

share|improve this question
I'm voting to close as not constructive as in some circles this is like asking if vim or emacs is better (see no-www.org, www.yes-www.org, and www.www.extra-www.org), but look at what Facebook themselves do when you visit "facebook.com". – Wooble Sep 15 '11 at 14:53
@Wooble, I'm pretty sure you misunderstood the question. The OP is reporting that when using one variant of the URL, it is not working. And the OP would like to know ho to fix that problem. – Kirk Woll Sep 15 '11 at 14:56
2  
@Kirk: Fair enough. Pick "example.com" or "www.example.com" (or "www.www.example.com" ;) ) as your primary URL, and redirect the other(s) to the primary with a 301 redirect. – Wooble Sep 15 '11 at 15:02
@Kirk nonetheless it is off-topic here so I voted to migrate to webmasters – Filburt Sep 15 '11 at 15:03
2  
@Filburt, you are mistaken. This is about Facebook App Development which is explicitly on-topic. – Kirk Woll Sep 15 '11 at 15:04
show 7 more comments

closed as not constructive by Wooble, Filburt, 0A0D, bažmegakapa, Neil Knight Sep 16 '11 at 17:03

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

The usual solution to this problem is for you to choose either www.example.com or example.com as your canonical website domain name. Then:

  • Use that domain name as the Facebook app domain
  • Use a redirect so that when people visit the wrong domain name they are re-directed to the "right" domain

How to redirect to the "right" domain name

-- That depends on your web server setup. You can also do it in your app. Best is at the webserver level. Consult the webmasters SO site for the best technique given your setup

-- If you're using Apache, here's a post on doing it.

share|improve this answer

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