Where can I find the facebook php class reference? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T16:40:47Zhttp://stackoverflow.com/feeds/question/851599http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/851599/where-can-i-find-the-facebook-php-class-reference1Where can I find the facebook php class reference?Unreality2009-05-12T07:40:15Z2009-07-22T07:29:11Z
<p>For an example, there is a set_user function</p>
<p>$facebook->set_user</p>
<p>but I typed in set_user at the facebook developer wiki search box, it returns
'There is no page titled "set_user"'</p>
<p><a href="http://wiki.developers.facebook.com/index.php/Special:Search?search=set_user&go=Go" rel="nofollow">http://wiki.developers.facebook.com/index.php/Special:Search?search=set_user&go=Go</a></p>
<p>Where can I find the list of the functions and properties for the facebook object user object etc?</p>
<p>Many thanks.</p>
http://stackoverflow.com/questions/851599/where-can-i-find-the-facebook-php-class-reference/853086#8530860Answer by Priidik Vaikla for Where can I find the facebook php class reference?Priidik Vaikla2009-05-12T14:29:38Z2009-05-12T14:29:38Z<p>Download the Official Facebook PHP Client Library package from <a href="http://wiki.developers.facebook.com/index.php/PHP" rel="nofollow">http://wiki.developers.facebook.com/index.php/PHP</a> and if you open facebookapi_php5_restlib.php you can see the methods and properties.</p>
http://stackoverflow.com/questions/851599/where-can-i-find-the-facebook-php-class-reference/897747#8977471Answer by chrismear for Where can I find the facebook php class reference?chrismear2009-05-22T13:08:43Z2009-05-22T13:08:43Z<p>The Developers wiki basically only documents the raw API. The official PHP library is a thin(-nish) wrapper around this API, and includes some minimal phpdoc documentation in its comments.</p>
<p>If you want to generate documentation for the library, you need a copy of <a href="http://www.phpdoc.org/" rel="nofollow">phpDocumentor</a> (and the CLI version of PHP installed). Then you can run:</p>
<pre><code>./phpdoc -t /path/to/write/documentation -o HTML:default:default -d /path/to/facebook-platform/php/
</code></pre>
<p>or in Windows:</p>
<pre><code>php.exe "C:\Path\To\phpdoc" -t C:\Path\For\Documentation -o HTML:default:default -d C:\Path\To\facebook-platform\php
</code></pre>
<p>to generate some local HTML documentation. But like I say, it's pretty minimal, and there's not much benefit over just reading the documentation inline with the code.</p>
http://stackoverflow.com/questions/851599/where-can-i-find-the-facebook-php-class-reference/1163617#11636171Answer by I will not get your mails for Where can I find the facebook php class reference?I will not get your mails2009-07-22T07:29:11Z2009-07-22T07:29:11Z<p>I may have found what you are looking for. Check <a href="http://wiki.developers.facebook.com/index.php/JS_API_T_FB.Facebook" rel="nofollow">http://wiki.developers.facebook.com/index.php/JS_API_T_FB.Facebook</a></p>
<p>If you scroll down, you can view the whole namespace.</p>
<p>It took a lot of digging to find this.</p>