I was reading over the documentation yet I could not figure out how to call Facebook.showPermissionsDialog() in php
include_once './facebook-platform/php/facebook.php';
$facebook = new Facebook(my api keys go here);
$fb_user = $facebook->require_login();
/*this is where i want it to go */
$facebook->api_client->stream_publish("test");
How would I go about doing this?