I have a pretty simple but strange problem. I have a text area and i want to allow user to share some text on FB. I have a link just below this textares, "Share on FB". My current user doesn;t have anything like facebook_uid or oauth_token. So i first need to authenticate user with FB and store its value in these fields. Things are working fine so far. The problem is, i get the text lost during this authentication process which user has enter above in textarea and wanted to share. I just cant send this textarea text into omniauth params. The solution i am trying to do is that, when user click on FB_share link to share the text, i just send an ajax call to server to save this text in Session and when and when user come back at /auth/facebook/callback, this session isn't available, dont know why.
Can any one tell me that how can i make two things in just single call? 1) authentication 2) FB sharing.
Im using omniauth-facebook for authentication and Koala for FB sharing.
Thanks in Advance.