1

重现步骤:

//初始化Javascript SDK

FB.init({ 
    appId:'204874249538850', cookie:true, 
    status:false, xfbml:true, oauth:true 
});

//创建动作链接

var strActionLinks = '[{"name": "' + 'Listen'+ '", "link": "' + 'http://www.myusic.com/DailyPosts/Tina_Munim.html' + '"}]';
var action_links = JSON.parse(strActionLinks);

然后张贴在个人资料页面的墙上http://www.facebook.com/pages/Myusic/196053677086787

var obj = {method: 'feed', 
link: 'http://www.myusic.com/DailyPosts/Tina_Munim.html', 
picture: 'http://www.myusic.com/DailyPosts/Tina_Munim.jpg', 
name: 'Tina Munim', 
caption: 'Explore, Discover, Share...', 
description: 'Some description', 
actions: action_links, 
from: '196053677086787' 
}; 


FB.ui(obj, callback);

预期行为:帖子应该出现在页面上。单击链接应将用户带到该网站

实际行为:帖子出现在页面上。但是点击链接什么也没做

4

2 回答 2

1

在您的应用程序设置中,在身份验证选项卡上,是否启用了“经过身份验证的推荐”?如果是,请尝试将其关闭。

这是 Simon Cross 对http://facebook.stackoverflow.com/questions/7699748/stream-story-links-not-clickable上报告的相关问题的回应

于 2011-10-09T17:22:20.057 回答
-1

(This is not an answer, but i cannot post a comment):

I just posted the same problem. It started happening yesterday : http://facebook.stackoverflow.com/questions/7699748/stream-story-links-not-clickable

If you have a canvas app too, you can send the links there and do a redirect

于 2011-10-08T21:13:54.410 回答