Ejemplo n.º 1
0
 private InstagramService()
 {
     Locations     = new InstagramLocationsEndpoint(this);
     Media         = new InstagramMediaEndpoint(this);
     Relationships = new InstagramRelationshipsEndpoint(this);
     Tags          = new InstagramTagsEndpoint(this);
     Users         = new InstagramUsersEndpoint(this);
 }
Ejemplo n.º 2
0
 private InstagramService(InstagramOAuthClient client)
 {
     Client        = client;
     Locations     = new InstagramLocationsEndpoint(this);
     Media         = new InstagramMediaEndpoint(this);
     Relationships = new InstagramRelationshipsEndpoint(this);
     Tags          = new InstagramTagsEndpoint(this);
     Users         = new InstagramUsersEndpoint(this);
 }