Mate, if there is an athlete who is in my contact(im following and he is following me) can I access his activities without an authorisation string? Code example:
[TestMethod]
public void GetFriendRides()
{
RealAuthenticator oauth = new RealAuthenticator();
StravaClient client = new StravaClient(oauth);
var athleteInfo = client.Athletes.GetAthlete("35975");
var activities = client.Activities.GetActivitiesAfter(new DateTime(2014, 5, 10)).Where(x =>
x.Athlete.Id == athleteInfo.Id);
Assert.IsTrue(activities.Count()==5);
}