How do you debug your facebook app?

facebook php development app is hell because they limit scripts, what are your tools for debugging it? write to file variables? arsonist? share ideas!

+4
source share
1 answer

Debugging a facebook application is practically no different from any web application:
Client side:

Server side:

  • Firebug Net and FirePHP tab (if you are comfortable using it)
  • main var_dump and echo

What is really hard for me to understand is their documentation!

Extra tip :
Try playing with FQL methods by creating a test group / page and events ... to better understand how the FB Graph API works. This will make reading documentation easier.

+2
source

Source: https://habr.com/ru/post/1337410/


All Articles