vote up 1 vote down star
1

For an example, there is a set_user function

$facebook->set_user

but I typed in set_user at the facebook developer wiki search box, it returns 'There is no page titled "set_user"'

http://wiki.developers.facebook.com/index.php/Special:Search?search=set_user&go=Go

Where can I find the list of the functions and properties for the facebook object user object etc?

Many thanks.

flag

80% accept rate
1  
Facebook documentation is notoriously poor. Judging by your comment on priidikvaikla's answer, you're looking for officially produced standard object documentation, and as far as I know, none exists. – zombat May 13 at 5:25
thx zombat. I'd make your comment as accepted answer if possbile – Unreality May 13 at 6:40
btw why don't ppl try to create one at facebook wiki? – Unreality May 13 at 6:41
non exists and that's a conincidence – tharkun May 21 at 11:26

3 Answers

vote up 1 vote down check

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.

If you want to generate documentation for the library, you need a copy of phpDocumentor (and the CLI version of PHP installed). Then you can run:

./phpdoc -t /path/to/write/documentation -o HTML:default:default -d /path/to/facebook-platform/php/

or in Windows:

php.exe "C:\Path\To\phpdoc" -t C:\Path\For\Documentation -o HTML:default:default -d C:\Path\To\facebook-platform\php

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.

link|flag
thanks a lot... – Unreality May 24 at 13:08
vote up 1 vote down

I may have found what you are looking for. Check http://wiki.developers.facebook.com/index.php/JS_API_T_FB.Facebook

If you scroll down, you can view the whole namespace.

It took a lot of digging to find this.

link|flag
many thanks. This link will be very helpful when I need to write facebook connect apps – Unreality Jul 22 at 10:13
vote up 0 vote down

Download the Official Facebook PHP Client Library package from http://wiki.developers.facebook.com/index.php/PHP and if you open facebookapi_php5_restlib.php you can see the methods and properties.

link|flag
come on... I need a class reference, on Web. Doesn't it completely suck to have no class reference on wiki and you will have to dig the methods & properties by looking at the php file? – Unreality May 13 at 0:51
The best documentation is the code. It never gets outdated. – priidikvaikla May 13 at 4:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.