-1

そのため、FB API を使用してユーザーのウォールにメッセージを投稿しています。私のコードは次のとおりです。

<script type="text/javascript">
    FB.ui({ 
        method: 'post', 
        message: 'Testing Message',
        caption: 'This is the Caption value.',
        name: 'Testing JS feed dialog on Antoher Feed',
        link: 'http://anotherfeed.com?ref=link',
        description: 'Testing property links, and action links via Feed Dialog Javascript SDK',
        picture: 'https://shawnsspace.com/ShawnsSpace.toon.nocolor..png',
        properties: 
        [
            { 
                text: 'Link Test 1', href: 'http://anotherfeed.com?ref=1'
            },
            { 
                text: 'Link Test 2', href: 'http://anotherfeed.com?ref=2'
            },
        ],
        actions: 
        [
            { 
                name: 'Shawn', link: 'http://anotherfeed.com'
            }
        ]       
    });
</script>

うまくいきません...何かアイデアはありますか?

4

1 に答える 1

1

変更してみる

FB.ui({ 
        method: 'post', 

FB.ui({ 
        method: 'feed', 

于 2012-06-18T06:36:54.420 に答える