I am very new to json, google apis. So please guide.
I am trying to write an application in 'JAVA' that would use google custom serch api through Restful. I started learning json and going through [link] http://code.google.com/apis/customsearch/v1/overview.html i wanted to write some code.
This shows the json of search for google:
http://code.google.com/apis/customsearch/v1/reference.html#method_search_cse_list
reference is http://code.google.com/apis/customsearch/v1/reference.html
From the reference i found which fields of this CustomSearch would be String or int or any other data type. They have also defined structure of every object.
But i am facing problems with some data types:
items.title array The title of the search result, in plain text.
items.snippet array The snippet of the search result, in plain text.
items.pagemap object Contains pagemap information for this search result.
items.pagemap.value array Pagemap information, keyed by the name of this pagemap.
items.pagemap.value.value object The actual pagemap information.
How would i define them in my class. what kind of array is title string or char and this pagemap is some convention or any site can give its own tags .
// class CustomSearch
public class CustomSearch {
public URL getURL() throws MalformedURLException{
return url.getURL();
}
@Key ("items") ArrayList<SearchResult> results;
private @Key SearchURL url;
private @Key Query queries;
}
// class
class SearchResult {
public SearchResult(){
}
public String getTitle(){
return title;
}
public String getLink(){
return link;
}
public String getSnippet(){
return snippet;
}
private @Key String title; // is this right ?
private @Key String htmlTitle;
private @Key String link;
private @Key String snippet; // is this right ?
private @Key String htmlSnippet;
}