嗨,谁能告诉我如何发布 mailto:在 facebook 墙上。我从 git 下载了 facebook SDK。但我无法发布 mailTo。这是 sdk:https://github.com/davejohnson/phonegap-plugin-facebook -连接/
这是我使用的代码:
FB.ui({
method: 'feed',
name: 'I\'m using the Hackbook web app',
caption: 'Hackbook for Mobile Web.',
description: 'Check out Hackbook .',
link: '<html><body><a href="mailto:vinod.amc@gmail.com"/></body></html>',
picture: 'http://www.facebookmobileweb.com/hackbook/img/facebook_icon_large.png',
actions: [{ name: 'Click Here', link: 'http://apps.facebook.com/mobile-start/' }],
},
function(response) {
console.log('publishStory UI response: ', response);
});
}