I have a pretty straight forward page tab app that can be added to anyones FB page. I am providing a button on my site to help users add the app to their FB page.
I want to update the iframe page tab url (and secure url) to include a query string. This will allow the content of the iframe to be custom for each user that adds the app to their page.
A basic use case is that User 1 clicks the button and the app gets added to their page. The content of the iframe is specific to user 1. User 2 does the same but the content of his tab is specific to user 2. I can handle the query string stuff on my site so that it responds correctly but I am not sure how to have the Tab url add the query string parameter from the Add App to Facebook button.
the current add app to facebook code I am using:
<div id='fb-root'></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
<p><a onclick='addToPage(); return false;'>Add to Page</a></p>
<p id='msg'></p>
<script>
FB.init({appId: "252314034891861", status: true, cookie: true});
function addToPage() {
// calling the API ...
FB.ui(
{
method: 'pagetab'
},
function(response) {
if (response != null && response.tabs_added != null) {
$.each(response.tabs_added, function(pageid) {
alert(pageid);
});
}
}
);
}
</script>
thanks for your help!
EDITED TO ADD MORE INFO
After talking this over with another dev, I wanted to make sure I am clear. Is User1 adds the tab to their page, then no matter who views the tab, the content will always be the contextual to User1. If User2 adds this tab to their page, then no matter who views the tab, the content will be contextual to User2. The content of the tab is specific to the user who added the tab to their page.