Facebook, send sk and app
I have an app that has a function to send app_data as part of the URL.
When the link is clicked the dialog pops up to select friends and the link at this stage is correct.
However when friend receives the message the link is to the business page no the original link.
When you first open the dialog you get a link like: eg http://www.facebook.com/pages/Autofficina/136519656411435?sk=app_175456335854933&app_data=carID%3D110&ref=nf
but the friend receives: http://www.facebook.com/pages/Autofficina/136519656411435
Is there anyway to link to the app?
My Code:
function send(carId, vname, image) {
var theUrl = dealersPageURL + '?sk=app_' + appID + '&app_data=' + encodeURIComponent('carID=' + carId);
vname += ' on ' + branchName;
FB.ui({
method: 'send',
name: vname,
link: theUrl,
picture: image,
redirect_uri: null,
display: 'popup'
});
}
链接地址: http://www.djcxy.com/p/93516.html
上一篇: XMPP框架:无法接收我的消息
下一篇: Facebook,发送sk和app