0
我只需要爲following endpoint但不知道語法做一個@GET,這裏是我的代碼:如何做一個@GET在RXJava在android系統
public interface GithubService {
String SERVICE_ENDPOINT = "https://api.github.com";
String SERVICE_FUNDS_ENDPOINT = "http://iwg-testapi.azurewebsites.net";
// this works fine
@GET("https://stackoverflow.com/users/{login}")
Observable<Github> getUser(@Path("login") String login);
//here is the problem:
@GET("/stem/funds")
Observable<Funds> getFunds(@Path("funds") String login);
}