Dialog:oauth
From Facebook Developer Wiki (FbDevWiki.com)
| Property | Type | Description | Argument | Possible Values / Examples |
|---|---|---|---|---|
| method | String | The UI dialog to invoke. | Required | 'oauth'
|
(apparently broken with FB.ui()... --Wong 16:37, 10 December 2010 (UTC))
Example oauth using JavaScript SDK dialog:
FB.ui({
method: 'oauth',
},
function(response) {
}
);