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.

I'm playing with the Facebook JS SDK console and I'm looking for the documentation on some of these flags. The official documentation and FB.init offers some insight, but not everything.

{
 "appid": "184484190795",
 "level": "debug",
 "locale": "en_US",
 "server": "",
 "trace": 0,
 "version": "mu",
 "module": "all",
 "status": 1,
 "autoRun": true,
 "orange": false,
 "oauth": 1,
 "frictionlessRequests": 1,
 "logging": 1,
 "xfbml": 1,
 "channelUrl": 1,
 "authResponse": 1,
 "hideFlashCallback": 1,
 "cookie": 1    
}

I'm going to comment on each one, please feel free to correct me:

  • locale
    • Change the locale of the SDK to match the locale of your site, change en_US to a supported locale code when loading the SDK. Docs
  • server
    • Not sure about this one. Deprecated?
  • trace
    • Not sure about this one. Deprecated?
  • version
    • Not sure about this one. Deprecated?
  • module
    • Not sure about this one. Deprecated?
  • status
    • Checks user's login status on load. Set to true by default.
  • autoRun
    • Not sure about this one. Deprecated?
  • orange
    • Not sure about this one. Deprecated?
  • frictionlessRequests
    • Enables sharing with minimal user action. See more here
  • logging
    • Outputs messages to the console. I'm guessing that error levels were supported at one time, but no longer. Set to true by default.
  • level
  • xfbml
    • Allows parsing of xfbml tags. Stuff like <fb:login-button> I believe this is deprecated in favour of divs with classes. e.g <div class="fb-login-button">
  • channelUrl
    • Allows cross domain communication. Think CORS. Specify a url to allow. More info here
  • hideFlashCallback
    • Allows you to provide a custom hide and display function. More info here
  • cookie
    • Enables cookie support. I'm guessing this is needed for oauth. False by default.
share|improve this question

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.