我正在考虑一种使用 gigya 实现共享电子邮件功能的方法,而我的网站对共享栏有非常特殊的需求(自己的模板和 css、动画等),所以使用下面的 buttonImages 不能解决我的问题。
var params ={
userAction:ua,
shareButtons:'share,facebook,twitter,email', // list of providers
containerID: 'divButtons',
buttonImages:{buttonLeftImgUp:'Button_Left.png',buttonCenterBGImgUp:'Button_Middle.png',buttonRightImgUp:'Button_Right.png'}
};
我已成功使用另一个受支持的 API gigya.socialize.postBookmark(params) 来实现这一点。
var params =
{
url: "http://www.gigya.com/",
provider:'tumblr',
facebookDialogType: 'share',
title: "Gigya"
};
gigya.socialize.postBookmark(params);
不幸的是,此功能不支持电子邮件作为提供商,这意味着我无法将电子邮件添加到我自己的共享栏中。有谁知道如何在使用我自己的模板(不使用自定义图像)时实现电子邮件共享?
非常感谢!