Passing argument in loginWithTwitter

How do you pass in arguments in this case?

Meteor.loginWithTwitter( 'example', { // maybe something like this???
  requestPermissions: ['user', 'public_repo']
}, function (err) {
  if (err)
    Session.set('errorMessage', err.reason || 'Unknown error');
});