Dialog:stream.share 
			
			
			From Facebook Developer Wiki (FbDevWiki.com)
				
								
				
				
																
				
				
								
				| Property | Type | Description | Argument | Possible Values / Examples | 
|---|---|---|---|---|
| method | String | The UI dialog to invoke. | Required | 'stream.share' | 
| u | String | URL to share | Required? | Ex. 'http://fbrell.com/' | 
Example stream.share dialog:
 var share = {
   method: 'stream.share',
   u: 'http://fbrell.com/'
 };
 FB.ui(share, function(response) { console.log(response); });

