Where can I find the facebook php class reference? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T16:40:47Z http://stackoverflow.com/feeds/question/851599 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/851599/where-can-i-find-the-facebook-php-class-reference 1 Where can I find the facebook php class reference? Unreality 2009-05-12T07:40:15Z 2009-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&amp;go=Go" rel="nofollow">http://wiki.developers.facebook.com/index.php/Special:Search?search=set_user&amp;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#853086 0 Answer by Priidik Vaikla for Where can I find the facebook php class reference? Priidik Vaikla 2009-05-12T14:29:38Z 2009-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#897747 1 Answer by chrismear for Where can I find the facebook php class reference? chrismear 2009-05-22T13:08:43Z 2009-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#1163617 1 Answer by I will not get your mails for Where can I find the facebook php class reference? I will not get your mails 2009-07-22T07:29:11Z 2009-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>