Is it possible to get origin facebook id from facebook app scope id?
I have 2 apps that shares the same database, so that user only need to sign up in one app in order to login both. This was working until facebook update their api from 1.0 to 2.0. Now, each user will have different fb scope id in each of them. I can't use fb id reference to the same user obj anymore.
In your situation I would recommend the following (this might not be the best solution, but at least it will get you working)
When you make a call to get the facebook user, Link(a link to the person's Timeline) is also returned.
In your case, App1 is associated to Link https://www.facebook.com/app_scoped_user_id/AppScopedUserIdForApp1/ App2 is associated to Link https://www.facebook.com/app_scoped_user_id/AppScopedUserIdForApp2/
The important thing to notice is both Links will be redirected to same URL. https://www.facebook.com/FacebookUserName which implies that App1's Link = App2's Link. You can implement this Logic so that multiple facebook apps can use the same database.