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.

So I had a basic theoretical question about the FB Api. As it turns out I was having a problem using the FB comments api on my website. The comments and posts worked as they should, but clicking on any notifications from the commenter's/poster's Facebook page redirected to a URL which loaded the page where the comment was made, but made all of the old comments invisible i.e. not shown. I finally tracked the problem down to the fact that FB was appending a query_string of the form - ~/url/?fb_comment_id=.....to the redirect URL. The URL that worked was the above URL without the query. Now I fixed this by intercepting this URL in my controller and redirecting the FB Api to the URL I desired .i.e the one with no query paramater.

My question is this - 1.Why did this happen? In another application I made this was not a problem. 2.Is it true that my solution is not elegant since, on a page with 1000's of comments(assume), the query string parameter would basically show the desired comment instead of all. 3.If the answer to 2 is yes....what is a better solution?

Thanks in advance!

Akshay.

share|improve this question
I'm not sure i understand your problem, the query string parameter is detected by the comments plugin and shows a specific comment, the rest of the URL should be unaffected, i don't see why this would cause problems in your code – Igy Aug 31 '12 at 18:19
I don't see why either....but it does.....the url without the query shows the comments while the url with shows none...apparently other people have had this issue too - stackoverflow.com/questions/9004713/… – Akshay Kumar Aug 31 '12 at 18:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.