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.

Ok the first thing you should note before looking at my code is that I'm developing locally on MAMAP and powering my backend using Parse. So where the fb.init code is called, I call a Parse init instead like I've been instructed to here in the Parse documentation: https://www.parse.com/docs/js_guide#fbusers. This will allow any facebook login data to be saved by Parse. Secondly. I've intentionally not included a channel url. I'm not using it at this point. I wonder if that as something to do with it. One thing I noticed is that none of the key syntax colors are showing up in my text editor. The word "function" won't highlight blue like it's supposed to, nor will any of the 'true' boolean values. What does that hint at? Below is the code:

<!DOCTYPE html>
<html lang="en">
     <head>
          <meta charset="utf-8" />
          <title>Find A Scene</title>
     </head>
     <body>


        <div id="fb-root"></div>
     <script>
      window.fbAsyncInit = function() {
        // initialize Parse object instead of fb.init so login info goes to Parse server. 
        Parse.FacebookUtils.init({
          appId      : 396720557089188, // App ID from the App Dashboard
          channelUrl : '//WWW.YOUR_DOMAIN/channel.html', // Channel File for x-domain communication
          status     : true, // check the login status upon init?
          cookie     : true, // set sessions cookies to allow your server to access the session?
          xfbml      : true  // parse XFBML tags on this page?
        });

        // Additional initialization code such as adding Event Listeners goes here
        Parse.FacebookUtils.logIn(null, {
      success: function(user) {
        if (!user.existed()) {
          alert("User signed up and logged in through Facebook!");
        } else {
          alert("User logged in through Facebook!");
        }
      },
      error: function(user, error) {
        alert("User cancelled the Facebook login or did not fully authorize.");
      }
    });

      };

      // Load the SDK's source Asynchronously
      // Note that the debug version is being actively developed and might 
      // contain some type checks that are overly strict. 
      // Please report such bugs using the bugs tool.
      (function(d, debug){
         var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
         if (d.getElementById(id)) {return;}
         js = d.createElement('script'); js.id = id; js.async = true;
         js.src = "//connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
         ref.parentNode.insertBefore(js, ref);
       }(document, /*debug*/ false));
    </script>

             <div><h1>What's Your scene?</h1></div>
             <div id="crowdType">
                <ul>            
                    <a href="" id="A"><li><img src="" alt="" /><h2>Indie Rocker</h2></li></a>
                    <a href="" id="B"><li><img src="" alt="" /><h2>Urban/Hip-Hop</h2></li></a>              
                    <a href="" id="C"><li><img src="" alt="" /><h2>Skaters</h2></li></a>
                    <a href="" id="D"><li><img src="" alt="" /><h2>Cyclists</h2></li></a>




                </ul>
             </div>
        </body>
    </html> 
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.