Skip to content

Instantly share code, notes, and snippets.

@wingyplus
Created September 30, 2016 04:18
Show Gist options
  • Save wingyplus/f2900b1b9f45ebc7709f5fb10859fac3 to your computer and use it in GitHub Desktop.
Save wingyplus/f2900b1b9f45ebc7709f5fb10859fac3 to your computer and use it in GitHub Desktop.
package io.github.wingyplus.retrofittut;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Headers;
import retrofit2.http.Path;
public interface UserService {
@Headers({
"Accept: application/vnd.github.v3.full+json",
"User-Agent: Retrofit-Sample-App"
})
@GET("users/{username}")
Call<User> getSingleUser(@Path("username") String username);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment