FB.ui:stream.publish - 发布到墙上的问题

时间:2010-06-07 17:04:57

标签: facebook

当我点击一个调用以下功能的链接时......我明白了 “出了点问题。我们正在尽快修复它。”

它已经工作了几个星期,并且上周开始表现得像这样。

我有什么改变吗?可能是的。但是,相同的代码适用于另一个非生产,测试fb-app-settings !!

这是javascript。(页面上没有javascript错误)

我需要帮助弄清楚什么是错的或在哪里看!我等了几天,但还是一样的问题。

function publishReview() {
    var atch = {
        name: 'Raajneeti - Movie Review',
        href: 'http://www.moviereviewsindia.com/Movie.aspx/Details/Raajneeti',
        caption: '{*actor*} just revealed his taste of a movie',
        description: 'Write, Read and Share movie reviews just through your Facebook Account',
        media: [{ type: 'image', src: 'http://moviereviewsindia.com/Content/Images/logoround.png', href: 'http://www.moviereviewsindia.com'}]
    };

    FB.ui(
        {
            method: 'stream.publish',
            message: '3/5 - Multi-starrer raajneeti was good but not great, and a very good efforts from Prakash Jha. A lot happened in 3 hours. I recommend to hire ajay devgan for car wash. Nana patekar was rocking as usual in his unusual style. Take him out and your movie experience may deterior. Ranbeer got a nice role of ARJUN, and he was characterized nicely in the movie. I can\'t say whether he was that great in acting. Story was good enough, but don\'t expect total real life thingy there. ',
            attachment: atch,
            action_links: [
                { text: 'My Reviews', href: 'http://www.moviereviewsindia.com/User.aspx/Profile/1266802272' }
            ],
            href: 'http://www.moviereviewsindia.com/Movie.aspx/Details/Raajneeti',
            user_prompt_message: 'Share your thoughts about ' + 'Raajneeti - Movie Review'
        },
        function(response) {
            if (response && response.post_id) {
                //success action

            } else {
                //failure action
            }

        }
    );
}

1 个答案:

答案 0 :(得分:1)