Skip to content

Commit

Permalink
Fix endpoint paths
Browse files Browse the repository at this point in the history
  • Loading branch information
nlefler committed Feb 17, 2018
1 parent ab9a506 commit 89f66f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Created by lefler on 6/19/14.
*/
public interface NLFoursquareVenueExplore {
@GET("/venues/explore")
@GET("venues/explore")
Call<NLFoursquareResponse<NLFoursquareVenueExploreResponse>>
explore(@QueryMap Map<String, String> parameters);
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Created by Nathan Lefler on 5/19/14.
*/
public interface NLFoursquareVenueSearch {
@GET("/venues/search")
@GET("venues/search")
Call<NLFoursquareResponse<NLFoursquareVenueSearchResponse>>
search(@QueryMap Map<String, String> parameters);
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public interface NLFoursquareUserInfo {
public static final String UserIdSelf = "self";

@GET("/users/{userId}")
@GET("users/{userId}")
Call<NLFoursquareResponse<NLFoursquareUserInfoResponse>>
getInfo(@QueryMap Map<String, String> parameters,
@Path("userId") String userId);
Expand Down

0 comments on commit 89f66f9

Please sign in to comment.