Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BingAnswer ¶
type BingAnswer struct { Type string `json:"_type"` QueryContext struct { OriginalQuery string `json:"originalQuery"` } `json:"queryContext"` WebPages struct { WebSearchURL string `json:"webSearchUrl"` TotalEstimatedMatches int `json:"totalEstimatedMatches"` Value []struct { ID string `json:"id"` Name string `json:"name"` URL string `json:"url"` IsFamilyFriendly bool `json:"isFamilyFriendly"` DisplayURL string `json:"displayUrl"` Snippet string `json:"snippet"` DateLastCrawled time.Time `json:"dateLastCrawled"` SearchTags []struct { Name string `json:"name"` Content string `json:"content"` } `json:"searchTags,omitempty"` About []struct { Name string `json:"name"` } `json:"about,omitempty"` } `json:"value"` } `json:"webPages"` RelatedSearches struct { ID string `json:"id"` Value []struct { Text string `json:"text"` DisplayText string `json:"displayText"` WebSearchURL string `json:"webSearchUrl"` } `json:"value"` } `json:"relatedSearches"` RankingResponse struct { Mainline struct { Items []struct { AnswerType string `json:"answerType"` ResultIndex int `json:"resultIndex"` Value struct { ID string `json:"id"` } `json:"value"` } `json:"items"` } `json:"mainline"` Sidebar struct { Items []struct { AnswerType string `json:"answerType"` Value struct { ID string `json:"id"` } `json:"value"` } `json:"items"` } `json:"sidebar"` } `json:"rankingResponse"` }
type Query ¶
type Query struct { //The number of answers that you want the response to include. The answers that Bing returns are based on ranking. For example, if Bing returns webpages, images, videos, and relatedSearches for a request and you set this parameter to two (2), the response includes webpages and images. AnswerCount int //Country code for answer CC string //Number of search result Count int16 //Filter seach results by ages values (Day, Week, Month) Freshness string //Country of the request sender Mkt string //Number of search results to skip Offset int16 Promote string //The actual research query Q string //A comma-delimited list of answers to include in the response (Computation, Entities, Images, News, RelatedSearches, SpellSuggestions, TimeZone, Videos, Webpages) ResponseFilter string //Off, Moderate Strict SafeSearch string //default languages for the interface SetLang string //active/deactive text Decoration TextDecoration bool }
Click to show internal directories.
Click to hide internal directories.