Reputation: 11
is it possible to add ?variable=value to the end of a facebook application url ?
for example: facebook.com/pagename/app_abcdefghij/phppage.php?variable=value
then use a _Get to query a mysql database ?
Upvotes: 0
Views: 4335
Reputation: 43816
To pass data to a page tab app, use the app_data parameter.
The value you supply for this will be present in the signed_request
which is POSTed to your app. Other parameters are not passed.
There's more information about this in the page tab documentation under the header Integrating with Facebook APIs
Upvotes: 3