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 think this may be a permissions issue but I am not sure what to do to get what I want. I run the query and either get not results or an indexing error on the where clause. See below:

 var fb = new FacebookClient(accessToken);

This query works fine

dynamic result = fb.Get("fql", new { q = "SELECT uid2 FROM friend WHERE uid1 = me()" });

This query runs but gets no results

dynamic result = fb.Get("fql", new { q = "SELECT url FROM url_like WHERE user_id = me()" });

This query gets OAuthException - #604

dynamic result = fb.Get("fql", new { q = "SELECT message, author_uid FROM checkin WHERE author_uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND page_id IN (SELECT page_id FROM page WHERE strpos(name, 'U2') >= 0)" });

I have tried adding permissions (perms="user_likes,friends_likes,user_checkins,friends_checkins") to the fb:login-button tag. I am getting an accessToken back. here is my code.

<script type="text/javascript">
  window.fbAsyncInit = function () {
      FB.init({
          appId: <My app id>, // App ID
          status: true, // check login status
          cookie: true, // enable cookies to allow the server to access the session
          xfbml: true  // parse XFBML
      });

      FB.Event.subscribe('auth.authResponseChange', function (response) {
          if (response.status === 'connected') {
              var uid = response.authResponse.userID;
              var accessToken = response.authResponse.accessToken;
              alert(accessToken);

          } else if (response.status === 'not_authorized') {
              alert("User not Authorized!");
          } else {
              alert("User not Logged in!");
          }
      });
  };

  // Load the SDK Asynchronously
  (function (d) {
      var js, id = 'facebook-jssdk'; if (d.getElementById(id)) { return; }
      js = d.createElement('script'); js.id = id; js.async = true;
      js.src = "//connect.facebook.net/en_US/all.js";
      d.getElementsByTagName('head')[0].appendChild(js);
  } (document));

Any help would be greatly appreciated. I am very new to FB Development and find the documentation and information to be very scattered and confusing.

Thanks,

Rhonda

share|improve this question
'perms' is the old syntax from before the changes in October 2011, it should be 'scope' - check the docs you're working off and make sure they're up to date – Igy May 25 '12 at 21:11
Thanks that worked. I wish there was a way to delete obsolete data off the internet. Too much invalid information sometimes makes this job difficult. – Rhonda May 25 '12 at 21:50
Well at least it worked for the one not returning results. I'm still getting the 604 error on the other query. As far as i can tell the fields in the where clause are indexed. – Rhonda May 25 '12 at 21:52

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.