The developer documentation specifies that several of the REST methods returning collections can be paged using some matrix parameters (https://developer.yahoo.com/social/rest_api_guide/partial-resources.html#paging-collection). However, I haven't actually been able to make this work. For instance, the following two URLs both return my total list of school profiles (2 total):
CODE
http://social.yahooapis.com/v1/user/<myid>/profile/schools
http://social.yahooapis.com/v1/user/<myid>/profile/schools;start=1;count=1
I would expect the second URL to only return the second of my two schools, but it returns both. Has anyone else experienced this? Can someone from Yahoo comment on whether this feature is actually implemented?