1

Consider the following G+ Domains API Response payload (snippet):

{
   ...
   ,
   "provider": {
    "title": "Google+"
   },
   "access": {
    "kind": "plus#acl",
    "description": "Shared privately"
   }
}

What exactly does shared privately mean? As far as I can tell, it's any type of activity that has not been explicitly shared publicly. Am I correct?

Bryan A
  • 3,598
  • 1
  • 23
  • 29

1 Answers1

1

The activities resource documentation covers most of this. description is just the user visible name of the acl state. The access.items[] fields are what actually dictate the visibility of the activity. I believe that "shared privately" is generally used when a specific list of people have access to the post.

abraham
  • 46,583
  • 10
  • 100
  • 152