I'm using javascript sdk for user login
FB.init({appId: applicationId, status: true, cookie: true, xfbml: true, oauth: true});
FB.login(callbackFunction, {scope:permissions});
i get valid access token in authResponse, and also a signed cookie is set, which decoded has code.
according to documentation access token could be retrieved with
when i try this with the code i receive error Error validating verification code. 100
as redirect_uri i've tried uri that is set as App Domain and siteURL. these give that error. with other uri i get Invalid redirect_uri: Given URL is not permitted by the application configuration. 191
Am i here mixing client-side flow and server-side flow in bad way or should i use some redirect_uri parameter when using FB.init or FB.login and use that exact uri when getting access token by code?