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.