README.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. == YouTube data API Video App in PHP ==
  2. PHP sample code for the YouTube data API. Utilizes the Zend Framework
  3. Zend_Gdata component to communicate with the YouTube data API.
  4. Requires the Zend Framework Zend_Gdata component and PHP >= 5.1.4
  5. This sample is run from within a web browser. These files are required:
  6. session_details.php - a script to view log output and session variables
  7. operations.php - the main logic, which interfaces with the YouTube API
  8. index.php - the HTML to represent the web UI, contains some PHP
  9. video_app.css - the CSS to define the interface style
  10. video_app.js - the JavaScript used to provide the video list AJAX interface
  11. --------------
  12. NOTE: If using in production, some additional precautions with regards
  13. to filtering the input data should be used. This code is designed only
  14. for demonstration purposes.
  15. --------------
  16. Please be sure to obtain a Developer Key from YouTube prior to using
  17. this application by visiting this site:
  18. http://code.google.com/apis/youtube/dashboard/
  19. More information on the YouTube Data API and Tools is available here:
  20. http://code.google.com/apis/youtube
  21. For a video explaining the basics of how this application works, please
  22. visit this link:
  23. http://www.youtube.com/watch?v=iIp7OnHXBlo
  24. To see this application running live, please visit:
  25. http://googlecodesamples.com
  26. == UPDATES ==
  27. 3/2009 - Removed functionality to set the Developer Key in a form. Instead,
  28. it is now hard-coded in the index.php page. This reduces complexity.