Skip to content

Commit

Permalink
Update google/google.plus.activities.list.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
sebilasse committed Feb 25, 2012
1 parent e05def8 commit 1c57097
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions google/google.plus.activities.list.xml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
<?xml version="1.0" encoding="UTF-8" ?>
<table xmlns="http://query.yahooapis.com/v1/schema/table.xsd">
<meta>
<author>Dan Beam</author>
<author>Dan Beam, modified by SL</author>
<documentationURL>http://developers.google.com/+/api/latest/activities/list</documentationURL>
<sampleQuery>select * from {table} where key="my_api_key" and userId="116115719351294422282"</sampleQuery>
<sampleQuery>select * from {table} where key="my_api_key" and userId="116115719351294422282" and pageToken="116115719351294422282"</sampleQuery>
</meta>
<bindings>
<select itemPath="json" produces="JSON">
<urls>
<url>https://www.googleapis.com/plus/v1/people/{userId}/activities/{collection}?key={key}</url>
<url>https://www.googleapis.com/plus/v1/people/{userId}/activities/{collection}?key={key}&amp;maxResults={maxResults}</url>
</urls>
<inputs>
<key id="userId" type="xs:string" paramType="path" required="true" />
<key id="collection" type="xs:string" paramType="path" default="public" />
<key id="key" type="xs:string" paramType="path" required="true" />
<key id="maxResults" type="xs:integer" paramType="path" default="100" />
</inputs>
</select>
</bindings>
</table>
</table>

1 comment on commit 1c57097

@sebilasse
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

api returns more results now... set default, supplying 100 as default

Please sign in to comment.