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 7554735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T11:25:09+00:00 2026-05-30T11:25:09+00:00

I have some variables that I am setting withing a function. When inside the

  • 0

I have some variables that I am setting withing a function. When inside the function I can get, set and alert the uid1 and accessToken2, but if I try to alert them outside of the function, it gives undefined. How can I set the values?

Here is the code:

FB.getLoginStatus(function(response) {
    if (response.status === 'connected') {
        var uid1 = response.authResponse.userID;
        alert(uid1); //works here
        var accessToken2 = response.authResponse.accessToken;
        alert(accessToken2); //works here
    } 
    else if (response.status === 'not_authorized') { } 
    else { }
});

alert(uid1); //does NOT work here
alert(accessToken2); //does NOT work here
  • 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-30T11:25:11+00:00Added an answer on May 30, 2026 at 11:25 am

    You declared those variables outside of the scope that you’re using them. To fix your code, declare them outside of the function:

    var uid1 = "";
    var accessToken2 = "";
    FB.getLoginStatus(function(response) {
        if (response.status === 'connected') {
            uid1 = response.authResponse.userID;
            alert(uid1);
            accessToken2 = response.authResponse.accessToken;
            alert(accessToken2);
        } else if (response.status === 'not_authorized') {
    
        } else {
    
        }
    
        alert(uid1); // Values will be set here.
        alert(accessToken2);
    });
    alert(uid1); // Values won't reliably be set here.
    alert(accessToken2);
    

    Update: As suggested by the comments below, because your getLoginStatus method is asynchronous, you will likely not have values when you call the alert() outside the method. I have added additional alerts inside the call back to show where you should try to access the values.

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

Sidebar

Related Questions

I have a javascript function (function1) that checks some global variables (can the user
I've been writing some jQuery functions that have JavaScript variables and looping, etc inside
Basically I have some variables that I don't want to preinitialize: originalTime = None
I have some user-submitted variables that I want to display in a different part
I have some global variables in a Python script. Some functions in that script
I have a class includes.vb that holds some variables (sharing them with other pages)
I have a program, and in that program there is some variables (username and
I have some php variables that I need to spit out in a template
I have a Perl module (Module.pm) that initializes a number of variables, some of
I have a variable that im define with another variable and some text. $title

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.