I have a site that hosts music (stereokiller.com) - a sample band page would be http://www.stereokiller.com/rapture .
I am attempting to create a facebook application that will insert a new tab into a user's band page on facebook loaded with the player and some other information from my site. However, i'm not sure how to pass the iframe app any parameters to determine which band information to show? I'm aware of the FB_SIG_PAGE_ID which i could then get the owner page name from the Graph API, but if there are multiple bands on my site with the same name then we could have issues. Any ideas?
------------- edit
never mind, i figured it out.
do an http call to graph.facebook.com/me/accounts?access_token={access token}. loop through results with the access token retrieved through the prior call, then do http post to graph.facebook.com/{PAGE_ID}/tabs with the form param {app_id} for the app of which you want to add.
feel free to share this!