From e917d285c37a3e16402318a7ab5badd4f651f7a6 Mon Sep 17 00:00:00 2001 From: Oleg Green Date: Tue, 26 May 2015 17:03:33 +0300 Subject: [PATCH] Using https connection due to flickr restrictions --- .../octo/android/robospice/sample/request/FlickrRequest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/robospice-sample-image-caching/src/com/octo/android/robospice/sample/request/FlickrRequest.java b/robospice-sample-image-caching/src/com/octo/android/robospice/sample/request/FlickrRequest.java index 8c557d4..0a3aad8 100644 --- a/robospice-sample-image-caching/src/com/octo/android/robospice/sample/request/FlickrRequest.java +++ b/robospice-sample-image-caching/src/com/octo/android/robospice/sample/request/FlickrRequest.java @@ -8,7 +8,7 @@ */ public abstract class FlickrRequest extends SpringAndroidSpiceRequest { - private static final String FLICKR_SERVICE_URL = "http://api.flickr.com/services/rest/"; + private static final String FLICKR_SERVICE_URL = "https://api.flickr.com/services/rest/"; protected FlickrRequest(Class clazz) { super(clazz); @@ -17,5 +17,4 @@ protected FlickrRequest(Class clazz) { protected String getServiceUrl() { return FLICKR_SERVICE_URL; } - }