Guest User

Untitled

a guest
Dec 16th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $response = $FB->get("/me/accounts", $accessToken);
  2. $accounts = $response->getGraphEdge()->asArray();
  3. $_SESSION['accounts'] = $accounts['data'];
  4.  
  5. <?php foreach ($_SESSION['accounts']['data'] as $key) {
  6. echo $key['name'] . "<br>";
  7. } ?>
Add Comment
Please, Sign In to add comment