retrofit.RetrofitError: 404 Not Found
问题 I am working on an android application that utilizes Retrofit to make api calls. When I call the following code: String searchText = query; RestAdapter restAdapter = new RestAdapter.Builder() .setEndpoint("https://mashape-community-urban-dictionary.p.mashape.com") .build(); WordsApiService wordsApi = restAdapter.create(WordsApiService.class); wordsApi.getWordDefinition(query, new Callback<WordsResponse>() { @Override public void success(WordsResponse wordsResponse, Response response) { System