Back to project page AndroidLiveCodeWarsawFlickr.
The source code is released under:
Apache License
If you think the Android project AndroidLiveCodeWarsawFlickr listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.byoutline.androidlivecodewarsawflickr.api; //w w w .ja v a 2 s .c o m import com.byoutline.androidlivecodewarsawflickr.model.FlickrResponse; import retrofit.http.GET; import retrofit.http.Query; /** * Created by Sebastian Kacprzak on 10.01.15. */ public interface FlickrService { @GET("/?method=flickr.photos.getRecent") FlickrResponse getRandom(@Query("extras") String extras); }