BoolNordicAB / sharepoint-utilities

Makes client side SharePoint a bit nicer to work with (that's the plan, at least)
https://boolnordicab.github.io/sharepoint-utilities/doc/index.html
MIT License
14 stars 3 forks source link

Get people I'm following #27

Open joladev opened 9 years ago

joladev commented 9 years ago

For a given username, retrieve all the users that user is following.

Assume we work with usernames (take a username, return a list of usernames) but if that is inconvenient we can use some ID or URL instead?

Eg:

sputils.user.getFollowing(username)
  .then(function (followers) {
    console.log(followers);
});
roobie commented 9 years ago

Good idea. Perhaps it can result in a list of objects with the username and a URL to more data á la SharePoint REST?