Hi,
I'm working on developing a bridge between your module and civicrm (eg. to be able to pre-fill the contact forms with data pulled from fb).
I have the FB Connect button working fine, I click on the button and it opens the FB login page and asks to ok the rights and when it closes and reload the page on the drupal site, it skips the GET parameters.
More technical:
the jQuery variable is set to Drupal.settings.fb.reload_url is set to http://example.org/myurl
but the page I'm on is
http://example.org/myurl?myparam=myvalue
If I add:
Drupal.settings.fb.reload_url = document.baseURI;
It works and I'm redirected to the right page.
Is there an option so it keeps the complete url, param included by default ?
X+