"GooglePlus" (Service Connection)
Connecting & Authenticating
Requests
User Data
"UserData" — profile information for the specified user
| "UserID" | authenticated user | user ID |
"ActivityList" — list of activities in the user's stream
"UserPosts — content of posts on the user's stream
"UserPostsTimeline — timeline plot of content in the user's stream
"UserPostsEventSeries — event series of content in user's stream
| "UserID" | authenticated user | user ID | |
| MaxItems | Google+ default | limit on the length of results | |
| "StartIndex" | 1 | starting position of results |
Activity Data
"ActivityData" — information about the specified activity
| "ActivityID" | (required) | activity ID |
"ActivityPlusOners" — list of users who clicked the +1 button for the specified activity
"ActivityResharers" — users who reshared the specified activity
| "ActivityID" | (required) | activity ID | |
| MaxItems | Google+ default | limit on the length of results | |
| "StartIndex" | 1 | starting position of results |
Circles
"CircledUsers" — users in the authenticated user's circles
| MaxItems | Google+ default | limit on the length of results | |
| "StartIndex" | 1 | starting position of results |
Queries
"ActivitySearch" — activities matching the query
"UserSearch" — activities matching the query
| "Query" | (required) | user ID | |
| MaxItems | Google+ default | limit on the length of results | |
| "StartIndex" | 1 | starting position of results |
Examples
Basic Examples (1)
Create a new connection by launching an authentication dialog:
googleplus = ServiceConnect["GooglePlus", "New"]googleplus["UserData", "UserID" -> 103981154059282208841]Get a list of recent activity from a user's public stream:
googleplus["ActivityList", "UserID" -> "+sportingnews"]Show the content of the activities on a timeline:
googleplus["UserPostsTimeline", "UserID" -> "+BuzzFeed"]