Thanks for the reply.
I am trying to query the search api from android app using retrofit.
The code is below:
public static final String API_URL = "https://api.twitter.com/1.1";
public static final String AUTH_HEADER = "****************************"; // HERE WHAT SHOULD BE THE AUTH_HEADER?
@GET("/search/tweets.json")
void searchTweets(
@Query("q") String query,
Callback<SearchResults> callback
);
This function can take any custom parameters…
Again many thanks for your reply.