I'm trying to consume the Office 365 contacts api, and I got a strange response every time that I change some of the parameters...
For example, accessing the following url https://outlook.office365.com/api/v1.0/me/contacts?$top=10
I get 10 contacts, and an url to the next page https://outlook.office365.com/api/v1.0/me/contacts/?$top=10&$skip=10
Accessing the url above, I get 8 contacts and no next page url.
However, if I try to access the next page explicitly (https://outlook.office365.com/api/v1.0/me/contacts/?$top=10&$skip=20 I get 10 contacts and a next page url)
what am I doing wrong? is that a bug?