Here is a problem I came across recently. How hope to find some help here.
I have created a canvas app on Facebook. The app has functionality to be logged in via FB. After that the FB user has some permissions there (submit posts, write comments, share on FB, etc...). The app works good.
Now my app also needs to be accessible directly from outside FB (with same url that is given to canvas). In this case the visitor can see existing stuff, but cannot submit anything. To have the rights, he needs to be redirected to FB app, login, give app permissions, etc. That works too.
Now problem occurs when user opens both direct site and FB. FB login information is stored in session. (got from "signed_request") In direct site I check if the session do not exist I do not allow user do certain things. But when FB app is open, shared session is created and so outside app The program knows that user is logged in and allows restricted actions.
Now my question is, is there a way to make one app to be used both from inside FB and outside, without conflicts with login info. I mean a way to "know" from where the app is opened maybe not relying on session.
