2016-08-20 14 views
0

FlickR APIを呼び出す方法を決定しました。しかし、ユーザーが入力した検索語に基づいてFlickRのすべての写真をどのように検索するかを決定するのは難しいです。FlickR API - EditTextに基づくクエリ

私は検索語がしかし、私はFlickrのAPIタグに私の編集テキスト変数(mQuery)をリンクする方法がわからない、FlickR APIの「タグ」のコンポーネントに入力されなければならないと考えている。

public class MainActivity extends AppCompatActivity { 

private EditText mSearchTerm; 
private Button mRequestButton; 
private String mQuery; 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 

    mSearchTerm = (EditText) findViewById(R.id.ediText_search_term); 
    mRequestButton = (Button) findViewById(R.id.request_button); 
    mRequestButton.setOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View view) { 
      mQuery = mSearchTerm.getText().toString(); 
      HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor(); 
      interceptor.setLevel(HttpLoggingInterceptor.Level.BODY); 
      OkHttpClient client = new OkHttpClient.Builder().addInterceptor(interceptor).build(); 
      Retrofit retrofit = new Retrofit.Builder() 
        .baseUrl("https://api.flickr.com/services/rest/") 
        .client(client) 
        .addConverterFactory(GsonConverterFactory.create()) 
        .build(); 


      ApiInterface apiInterface = retrofit.create(ApiInterface.class); 
      Call<List<Photo>> call = apiInterface.getPhotos(mQuery); 
      call.enqueue(new Callback<List<Photo>>() { 
       @Override 
       public void onResponse(Call<List<Photo>> call, Response<List<Photo>> response) { 

       } 

       @Override 
       public void onFailure(Call<List<Photo>> call, Throwable t) { 

       } 
      }); 

     } 
    }); 



} 

//Synchronous vs. Asynchronous 
public interface ApiInterface { 
    @GET("?&method=flickr.photos.search&tags=<Ali>&api_key=1c448390199c03a6f2d436c40defd90e&format=json") // 
    Call<List<Photo>> getPhotos(@Query("q") String photoSearchTerm); 
    } 

} 

答えて

1

これを試してみてください。これはFlickrの検索APIです

public static final String BASE_URL = "https://api.flickr.com/"; 

    @GET("services/rest/?method=flickr.photos.search&api_key="+API_KEY+"&format=json&nojsoncallback=1&extras=url_m") 
    Call<FlickrModel> getImages(@Query("text") String query); 
+0

ありがとうございますが、EditTextはどのように組み込まれていますか? – tccpg288

+1

ここで間違ったRetrofitの初期化を行っています –

+1

https://github.com/Veeresh8/FlickrAPI必要なすべてのものを持っているこのレポを確認してください –

関連する問題