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'm new here. My name is Mike i'm responsible for some minor tweaks and modifications on www.reallol.com. I guess you could say I'm the webmaster, but I'm not very tech Savvy so I tend to make mistakes and I'm a bit slow when it comes to coding. Also I have read the numerous responses that were given to people with similar issues, yet I feel my issue is different and the answers provided to other users on stackoverflow cant fix my problem.

Anyways, let me cut to the chase. We have a script on our website that picks an image from our database and its title and url. And posts it on our wall. You can view the Facebook wall here : www.facebook.com/reallol . As of yesterday the script that posts these pictures on Facebook has been faulty. I've tried hiring a few people to fix it, all were unsuccessful.

But here is what I understand so far. The error code we get is this one:

    Warning: Invalid argument supplied for foreach() in /home/*******/public_html/facebook/facebook_autoposter.php on line 54
    Trying Doggy Clothesline GIF
    Fatal error: Uncaught OAuthException: A user access token is required to request  this resource. thrown in /home/*******/public_html/facebook/library/base_facebook.php on   line 1107

Here is the line inside the php file.

    foreach($accounts_list['data'] as $account){
    if($account['id'] == $cfg['facebook_page_id']){ 
    $access_token = $account['access_token'];
    if($cfg['debug']) echo "<p>Page -- Access Token: $access_token</p>";
     }
     }  

The way this script works is I have to install the script on some facebook user that has access to the facebook page. So technically an admin. Once the admin installs the app via */facebook_autposter.php?=install the facebook app is installed on his account and we can automatically set up a cron that will posts pictures on his behalf every now and then. The issue is since today, I have to reinstall the script everytime I want to send a picture. As if it's not saving my session or something. I ran out of ideas. I tried with different admins, and I tried remaking the "facebook app" both tries were unsuccessful.

Regards, Mike, Sorry for the long post

share|improve this question
did you debug your code? check you access token in debugger (developers.facebook.com/tools/debug) – Shadowfax Dec 24 '12 at 6:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.