2

アクション「見る」をオブジェクト「ビデオ」に投稿しようとしています

このエラーが発生します:

Error occured

Type: OAuthException

Message: Unknown path components: /touchcontrol:watch

私は非常に絶望的です!! 助けてください!、アプリの OG 設定と何か関係があるのでしょうか?

これに関する以前の質問を見たことがありますが、解決策は私のコードを修正しませんでした..それでも同じエラーが発生します

ここに私のコードがあります:

function postAction() {
                FB.api('/me/namespace:watch' + '?video="video url"', 'post', function (response) {
                    var msg = 'Error occured';
                    if (!response || response.error) {
                        if (response.error) {
                            msg += "\n\nType: " + response.error.type + "\n\nMessage: " + response.error.message;
                        }
                        alert(msg);
                    } else {
                        alert('Post was successful! Action ID: ' + response.id);
                    }
                });
            }
        </script>

メタタグ:

xmlns:fb="https://www.facebook.com/2008/fbml"> 
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# video: http://ogp.me/ns/video#">
<meta property="fb:app_id" content="[idnumber]" />
<meta property="og:title" content="titlesomething" />
<meta property="og:image" content="imageurl.jpg" />
<meta property="og:description" content="MyDescription" />
<meta property="og:url" content="http://url.com">
<meta property="og:site_name" content="contentname" />
<meta property="og:type" content="video.watches" /> 

前もって感謝します!

4

0 に答える 0