Native Facebook share ignoring params

Hi,
I’m trying to use the following to post to facebook

Facebook.showDialog({
			method: "share",
			href: "http://domain.ca",
			title: this.badgeTitle,
      description: this.badgeFacebook,
			picture: 'http://domain.ca/badges-' + this.jpgNum + '.jpg',
			caption: 'domain.ca'
		});

This works when fb is not installed, but if I install the app, and my app tries to use facebook native, the parameters except for href are being ignored.

Any ideas?