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.

When I request an access token from Facebook, it returns this as a string:

"access_token=AAABqLmGZAT7sBAJK8llYPWm27lgfRxVZBl************YQZDZD&expires=5182152"

How can I get only the access_token from the above value.

share|improve this question

closed as not a real question by CBroe, ЯegDwight, Sergey K., Zuul, M42 Oct 8 '12 at 9:09

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.

2 Answers

up vote 1 down vote accepted

You can use parse_str() for that:

parse_str('access_token=AAAAA***&expires=123', $a);
echo $a['access_token'];
share|improve this answer

In PHP?

$foo = $_GET['access_token'];

Depending on your setup, you'll also want to store the expires variable, so that you know how long the token is valid for.

share|improve this answer

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