Call to undefined method in facebook call to publishUserAction - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T02:00:22Z http://stackoverflow.com/feeds/question/827069 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/827069/call-to-undefined-method-in-facebook-call-to-publishuseraction 1 Call to undefined method in facebook call to publishUserAction altCognito 2009-05-05T21:49:17Z 2009-06-16T03:44:59Z <p>I'm getting the following using the PHP client on my server (connecting via FBML). I've included the appropriate php files (facebook etc..)</p> <pre><code>Fatal error: Call to undefined method FacebookRestClient::feed_publishUserAction() in ..../index.php on line 50 </code></pre> <p>I'm trying to use the <a href="http://wiki.developers.facebook.com/index.php/Feed.publishUserAction#Example%5FRequests" rel="nofollow">example given</a>.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/827069/call-to-undefined-method-in-facebook-call-to-publishuseraction/827167#827167 2 Answer by zombat for Call to undefined method in facebook call to publishUserAction zombat 2009-05-05T22:19:08Z 2009-05-05T22:19:08Z <p>You might want to take a quick browse/grep through your Facebook API files (facebookapi_php5_restlib.php) and make sure that the <code>feed_publishUserAction()</code> method exists. Perhaps you're using an older version of the API library?</p> http://stackoverflow.com/questions/827069/call-to-undefined-method-in-facebook-call-to-publishuseraction/999466#999466 0 Answer by Unreality for Call to undefined method in facebook call to publishUserAction Unreality 2009-06-16T03:37:34Z 2009-06-16T03:44:59Z <p>OMG I found the answer</p> <p>Because the facebookapi_php5_restlib.php that facebook.com provided you is a piece of outdated shit</p> <p>i.e. you won't be able to find the word feed_publishUserAction in the facebookapi_php5_restlib.php file</p> <p>HOWEVER, the <a href="http://svn.facebook.com/svnroot/platform/samples/packages/smiley.tar.gz" rel="nofollow">official facebook smiley demo</a> from <a href="http://wiki.developers.facebook.com/index.php/Demos" rel="nofollow">this facebook wiki page</a> , contained a more completed facebookapi_php5_restlib.php , along with the feed_publishUserAction function</p> <p>Which finger would you like to show to the facebook developer staffs?</p>