Reputation: 36826
I have a Facebook App where it can be installed on a users page and then their clients can make bookings with them. As such, the app needs to know who installed the app on their Page, not so much who is currently using it.
I can do this on the web app using signed_request and Page Id. Signed request is not available on Mobile Facebook apps though. Is there any other way of identifying the installed user?
Upvotes: 0
Views: 125
Reputation: 43816
No, in order to get the user's information you'll need them to Login to the app and give you permission to see their data; the workaround you're using elsewhere with the signed_request
doesn't apply, because that's specific to page tab apps, and only gives you the 'like' status, not the user ID
Upvotes: 1