Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

im trying to post the action 'watch' to a object 'video'

getting this error:

Error occured

Type: OAuthException

Message: Unknown path components: /touchcontrol:watch

Im very desperate!! please help!, Could it have something to do with my OG settings in my app?

Ive seen a previous question about this, but the solution did not fix my code.. still getting the same error

heres my code:

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>

meta tags:

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" /> 

Thanks in advance!

share|improve this question
Is that definitely the code you're using to post? Assuming the app's namespace is 'touchcontrol' and the action type is 'watch' that should be correct - does that match what the 'get code' link in the app's OG settings says? – Igy Jul 5 '12 at 11:20
Custom watch actions won’t get approved any more anyways. And if it’s not a custom one, but the build-in one – then it has to be published against /me/{objecttype}.watches – CBroe Jul 5 '12 at 15:25

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.