Merge
diff --git a/FAQ b/FAQ
new file mode 100644
index 0000000..deba976
--- /dev/null
+++ b/FAQ
@@ -0,0 +1,7 @@
+Frequently asked questions?
+
+
+Q: How do I work out the arguments and methods that are available for a particular API?
+A: http://api-python-client-doc.appspot.com/ has dynamically generated documentation for all the APIs supported by this library.
+
+
diff --git a/functional_tests/test_services.py b/functional_tests/test_services.py
index 8a20d3f..ecb8713 100644
--- a/functional_tests/test_services.py
+++ b/functional_tests/test_services.py
@@ -83,7 +83,8 @@
buzz = build('buzz', 'v1', self.http)
max_results = 1
people_cmd = buzz.people()
- #https://www.googleapis.com/buzz/v1/activities/111062888259659218284/@self/B:z13nh535yk2syfob004cdjyb3mjeulcwv3c?alt=json#
+ # The post https://www.googleapis.com/buzz/v1/activities/111062888259659218284/@self/B:z13nh535yk2syfob004cdjyb3mjeulcwv3c?alt=json#
+ #Perform this call https://www.googleapis.com/buzz/v1/activities/111062888259659218284/@self/B:z13nh535yk2syfob004cdjyb3mjeulcwv3c/@liked?alt=json&max-results=1
people = people_cmd.liked(groupId='@liked', userId='googlebuzz', scope='@self',
postId='B:z13nh535yk2syfob004cdjyb3mjeulcwv3c', max_results=max_results).execute()