Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6557277
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T13:03:12+00:00 2026-05-25T13:03:12+00:00

I am trying to get the user gender and birth date through the following:

  • 0

I am trying to get the user gender and birth date through the following:

   FB.api('/me', function(response) {
                var query = FB.Data.query('select birthday, gender from user where owner={0}',
                       response.id);

                query.wait(function(rows) {
                    console.log(rows[0].birthday);
                    console.log(rows[0].gender);
                    alert(rows[0].birthday);
                    alert(rows[0].gender);
                });
            });

However, I see nothing on the console and there is no alert. Why is this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T13:03:12+00:00Added an answer on May 25, 2026 at 1:03 pm

    If you want the birthday and gender of an authenticated user (/me) you can just access the User Object like this:

    FB.api('/me', function(response) {
        console.log(response.birthday);
        console.log(response.gender);
        alert(response.birthday);
        alert(response.gender);
    });
    

    If you want the birthday and gender to come from the user table you can’t use the “gender” field because it doesn’t exist. Use “sex” instead.

    FB.api('/me', function(response) {
      var query = FB.Data.query('select birthday, sex from user where uid={0}', response.id);
    
       query.wait(function(rows) {
             console.log(rows[0].birthday);
             console.log(rows[0].gender);
             alert(rows[0].birthday);
             alert(rows[0].sex);
            });
    });
    

    You received no response because you were trying to access a field that doesn’t exist.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to get user album by using GRAPH API with function facebook.request(contact.getFacebook_id()+/albums)
I have a problem trying to get the count out of the following query:
I am trying to get user status updates using the graph API. These are
i'm trying to get user's public information (name, photo, gender, profile link). as i
I'm trying to get user position in Sencha Touch 2: var geo = new
I'm trying to get user GUID from Active Directory. My code: DirectoryEntry entry =
hi I am trying to get user profile information like this once the authentication
I am trying to get the user defined global hot key for my application.
I am trying to get if user is logined in facebook, if yes then
I'm trying to get the user to confirm if they want to delete a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.