...
When you send that GET request, the social network returns an HTTP 200 OK status code and a collection of people sorted by date.
Another example: if you want to break up your request to ensure that you only retrieve a limited number of people at a time (such as ten people per "page" of results), you can use the count and startIndex query parameters to retrieve a list of people one page at a time.
For more information about the supported query parameters, see Query parameter reference.
Creating, updating, and deleting profile information
...
When you send that GET request, the social network returns an HTTP 200 OK status code and a collection of Activity items sorted by date.
For more information about the supported query parameters, see Query parameter reference.
Updating and deleting Activity items
...
To delete an AppData item, send an authenticated DELETE
request to the AppData item's URL.
Troubleshooting Tip: Some firewalls block HTTP DELETE
messages. To get around this, you can include an X-HTTP-Method-Override: DELETE
header in a POST
request.
Note: To update existing AppData items, see Updating AppData items; don't update by deleting AppData items and then re-adding them.
...