Last active
October 14, 2017 10:12
-
-
Save BallerIndustries/6156ae22c9c09915520614d66e7a86fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface FlickService | |
{ | |
@GET("/services/rest/?method=flickr.photos.search&format=json&nojsoncallback=1&extras=url_t,url_c,url_l,url_o") | |
Observable<FlickrPhotosSearchResponse> listPhotos(@Query("api_key") String apiKey, @Query("tags") String tags); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment