0

When I put my application link in the Object Debugger, I get this warning:
Extraneous Property Objects of this type do not allow properties named og:site_url.

I don't have any Meta tags in my code. I don't know how to fix an extraneous property that I haven't even defined. Any ideas how to fix that?

This is the only script being called in my code right now. I paired down all the other stuff and with this I still got the error. Although not when I put in the link for the canvas page, only with the link to the app itself.

FB.init({
    appId  : '###',
    status : true, // check login status
    cookie : true, // enable cookies to allow the server to access the session
    xfbml  : true, // parse XFBML
    channelUrl  : 'mysite.com/channel.html', // Custom channel URL
    oauth : true // enables OAuth 2.0
});
3
  • are you making a GET or POST request? and what kind (get/post) does your URL handler (Servlet) accept? Commented Oct 11, 2011 at 4:00
  • I've got only one script being called. Too big for a comment. I'll put it in the original question. Commented Oct 11, 2011 at 4:43
  • Ok, try out the suggestion in my answer below and I think it should work. Commented Oct 11, 2011 at 5:36

1 Answer 1

1

Try changing

channelUrl : 'mysite.com/channel.html'

to

channelUrl : '//www.mysite.com/channel.html'

Ref - http://developers.facebook.com/docs/reference/javascript/

Sign up to request clarification or add additional context in comments.

1 Comment

It didn't get rid of the error message, but it did stop the error from happening when I try to actually go to the site.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.