/// <summary>
 /// Get location info.
 /// </summary>
 public Models.ILocation GetLocationInfo(long id)
 {
     try
     {
         return(locationController.MapJsonToLocation(InstagramHttpClient
                                                     .LocationEndPoint
                                                     .GetLocationInfoAPICall(id)));
     }
     catch (Exceptions.InstagramAPICallException e)
     {
         throw e;
     }
     catch (Exception)
     {
         return(null);
     }
 }