LinkedInDeveloperToolkit
LinkedInDeveloperToolkit copied to clipboard
Can't return more than three updates
I've installed the project off NuGet yesterday, I'm using NetworkUpdateTypes.All but I only get one result
var data = service.GetNetworkUpdates(NetworkUpdateTypes.All);
var results = data.Items;
foreach (var result in results)
{
string personName = result.UpdateContent.Person.Name;
string personImage = result.UpdateContent.Person.PictureUrl;
string personJobTitle = result.UpdateContent.Person.Headline;
}
Changing it to NetworkUpdateTypes.ConnectionUpdate I get three items. Using Scope.Connections or Scope.Self doesn't make much difference (Connections = 2, self = 3). I would expect All to bring back everything on https://www.linkedin.com/home or am I misunderstanding? The access token has full permissions
r_emailaddress+r_network+rw_nus+r_contactinfo+rw_company_admin+rw_groups+w_messages+r_basicprofile+r_fullprofile
and must be connecting otherwise it would just error. What am I doing wrong?