Feeds:
Posts
Comments

Archive for the ‘Good To Know’ Category

*** SEE THE VIDEO ***
callMethodPost() is a function I modified from Dominic Watson’s original callMethod() in his FBML Starter Kit. I decided to separate this function into two functions: callMethodGet() and callMethodPost(). Since you will be either getting or posting data, I felt that it was easier to separate the methods and call them according [...]

Read Full Post »

***** SEE THE VIDEO *****
——————————————————————————-
callMethodGet() is a function I used from Dominic Watson’s original callMethod() in his FBML Starter Kit. I decided to separate this function into two functions: callMethodGet() and callMethodPost(). Since you will be either getting or posting data, I felt that it was easier to separate the methods and call them according [...]

Read Full Post »

If your directly calling the REST Server from http://api.new.facebook.com/restserver.php you may find that it’s challenging to create a valid signature. This is because the signature is generated on the fly for each API call. You can still call the REST directly to get a response but you will have to dump the signature value each [...]

Read Full Post »

***** SEE THE VIDEO *****
——————————————————————————-
Extended Permissions are a way for your app users to grant access without asking for approval. For example, if you use the photo_upload extended permission, your users no longer have to approve an image each time they upload a photo from your application. Or if you use the email permission, your [...]

Read Full Post »

As soon as a user ‘Allows’ access to your application FaceBook passes a ton of IMPORTANT parameters that can make your life much easier.
note: from this point on, the parameters are passed everytime the user accesses your application
Available Params:
fb_sig_session_key – The session key for the application to use whenever interacting with the user
fb_sig_added – Whether [...]

Read Full Post »