Call to undefined method in facebook call to publishUserAction - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T02:00:22Zhttp://stackoverflow.com/feeds/question/827069http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/827069/call-to-undefined-method-in-facebook-call-to-publishuseraction1Call to undefined method in facebook call to publishUserActionaltCognito2009-05-05T21:49:17Z2009-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#8271672Answer by zombat for Call to undefined method in facebook call to publishUserActionzombat2009-05-05T22:19:08Z2009-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#9994660Answer by Unreality for Call to undefined method in facebook call to publishUserActionUnreality2009-06-16T03:37:34Z2009-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>