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 am using javascript sdk to update status in facebook. This is my code

window.fbAsyncInit = function() {
FB.init({
  appId      : 'id', // App ID
  status     : true, // check login status
  cookie     : true, // enable cookies to allow the server to access the session
  xfbml      : true  // parse XFBML
});

// Additional initialization code heres

   FB.login(function(response) {
  if (response.authResponse) {
 console.log('Welcome!  Fetching your information.... ');
 FB.api('/me', function(response) {
   console.log('Good to see you, ' + response.name + '.');
 });
   } else {
 console.log('User cancelled login or did not fully authorize.')
   }
});
   };

   // Load the SDK Asynchronously
     (function(d){
    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 = "http://connect.facebook.net/en_US/all.js";
      ref.parentNode.insertBefore(js, ref);
      }(document));
   </script>

but i am getting An error occurred message while opening this page.please give a solution to solve this.Or any one else can share the app id which is working fine

share|improve this question
please provide the error description or number – AboQutiesh Sep 16 '12 at 6:17
not getting any error number. this is the error desc ".An error occurred with Dragnshare. Please try again later. – V I J E S H Sep 16 '12 at 6:23
Post a link to your app, please. "An error occurred" message sounds like a browser message, so it could be any number of errors (javascript, html, missing resource, etc). – typeoneerror Sep 16 '12 at 6:23
1  
Sounds like the error is with Dragnshare, not Facebook ;) – typeoneerror Sep 16 '12 at 6:25
please share how i can fix Dragonshare (my app). I am trying local host. please tell how to set the domain names – V I J E S H Sep 16 '12 at 6:30
show 3 more comments

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.