1

自上周以来,我一直在尝试解决这个问题,对于我的生活,我似乎无法在 safari 上使用它,除 Safari 之外,所有其他浏览器都会呈现弹出窗口。

看起来很简单,javascript-sdk异步加载,启动它,然后FB.ui用方法'stream.publish'调用。问题是我知道这段代码应该在 safari 中工作,因为这里的例子是http://fbrell.com/fb.ui/stream.share

我正在使用这个 P3P 标头,我们使用它来修复 IE7 的问题:

Response.AddHeader("P3P", "CP=\"NON DSP COR DEVa PSAa IVAo CONo OUR IND UNI PUR NAV DEM LOC\", " + "policyref=\"http://sweepstakes.mars.com/w3c/p3p.xml\"");

我希望有人可以提供可以使这项工作正常进行的魔术技巧。这是我的代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">
<head id="Head1" runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>test</title>
</head>
<body>
    <div id="fb-root">
    </div>
    <script>
        window.fbAsyncInit = function (){

            FB.init({ appId: '<%= Common.appID %>', status: true, cookie: true,
                xfbml: true
            });

            var publish = {
                method: 'stream.publish',
                message: 'test',
                display: 'dialog'
            };

            FB.ui(publish);
        };

        (function () {
            var e = document.createElement('script'); e.async = true;
            e.src = document.location.protocol +
            '//connect.facebook.net/en_US/all.js';
            document.getElementById('fb-root').appendChild(e);
        }());

    </script>
</body>
</html>
4

1 回答 1

1

经过多次考验和挫折。一位同事指出,'feed' 是执行 'stream.publish' 的新方式。这解决了这个问题。

编辑:过时的答案。

于 2011-02-04T18:05:11.950 回答