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 have the following code:

public function get_facebook()
    {
        $loginUrl = Helpers::fbLogin();

        if(Input::get('error'))
        {
            Session::flash('failure', 'Трябва да дадете права на Facebook приложението.');
            return Redirect::to('signup');
        }
        else
        {
            $facebook = IoC::resolve('facebook-sdk');
            $uid = $facebook->getUser();
            $fbuser = $facebook->api('/me', 'GET');

            $user = User::where('uid', '=', $uid)->or_where('email', '=', $fbuser['email'])->first();

            if(is_null($user)){
                Session::flash('fbuser', $fbuser);
                return Redirect::to('signup');
            } else {
                Auth::login($user);
                return Redirect::to('/');
            }
        }

        return Redirect::to($loginUrl);
    }

But I get this message: An active access token must be used to query information about the current user.

Also when I print the $facebook->getAccessToken() & try opening my app with different facebook accounts I get same token.

What is access token & what do we use it for?

P.S. I have set up properly my appID & secret code. The problem is that sometimes it works, sometimes it doesn't.

share|improve this question

closed as not a real question by Jimmy Sawczuk, CBroe, Jocelyn, Ashwini Chaudhary, Mark Jan 16 at 23:32

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

Access token is token, that is given to your application by user to access his/her information from your application. In order to get that token, user has to give you permission to access at least his basic information.

More here

share|improve this answer
So a new access token is generated for every user? – FakeHeal Jan 16 at 16:05
1  
Yes. They also expire after a while so they will be changing constantly for users – Darvex Jan 16 at 16:07
Well, I get only APP's access token, not user. And I think that's why I get this error: An active access token must be used to query information about the current user. Any ideas how to get user's access token? – FakeHeal Jan 16 at 16:21
pretty simple. You use SDK's ->getLoginUrl() (i belive that's the name of function) and redirect user to that link. It will ask user for permissions and redirect him back, granting your app access token for that user – Darvex Jan 16 at 19:58

Not the answer you're looking for? Browse other questions tagged or ask your own question.