I’m developing a REST API service for a large social networking website I’m involved in. So far, it’s working great. I can issue GET
, POST
, PUT
and DELETE
requests to object URLs and affect my data. However, this data is paged (limited to 30 results at a time).
However, what would be the best RESTful way to get the total number of say, members, via my API?
Currently, I issue requests to a URL structure like the following:
- /api/members—Returns a list of members (30 at a time as mentioned above)
- /api/members/1—Affects a single member, depending on request method used
My question is: how would I then use a similar URL structure to get the total number of members in my application? Obviously requesting just the id
field (similar to Facebook’s Graph API) and counting the results would be ineffective given only a slice of 30 results would only be returned.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…