mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-11 18:44:26 +00:00
Commit from m3o/m3o action
This commit is contained in:
48
google/google.go
Executable file
48
google/google.go
Executable file
@@ -0,0 +1,48 @@
|
||||
package google
|
||||
|
||||
import (
|
||||
"github.com/m3o/m3o-go/client"
|
||||
)
|
||||
|
||||
func NewGoogleService(token string) *GoogleService {
|
||||
return &GoogleService{
|
||||
client: client.NewClient(&client.Options{
|
||||
Token: token,
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
||||
type GoogleService struct {
|
||||
client *client.Client
|
||||
}
|
||||
|
||||
// Search for videos on Google
|
||||
func (t *GoogleService) Search(request *SearchRequest) (*SearchResponse, error) {
|
||||
rsp := &SearchResponse{}
|
||||
return rsp, t.client.Call("google", "Search", request, rsp)
|
||||
}
|
||||
|
||||
type SearchRequest struct {
|
||||
// Query to search for
|
||||
Query string `json:"query"`
|
||||
}
|
||||
|
||||
type SearchResponse struct {
|
||||
// List of results for the query
|
||||
Results []SearchResult `json:"results"`
|
||||
}
|
||||
|
||||
type SearchResult struct {
|
||||
// abridged version of this search result’s URL, e.g. www.exampe.com
|
||||
DisplayUrl string `json:"displayUrl"`
|
||||
// id of the result
|
||||
Id string `json:"id"`
|
||||
// kind of result; "search"
|
||||
Kind string `json:"kind"`
|
||||
// the result snippet
|
||||
Snippet string `json:"snippet"`
|
||||
// title of the result
|
||||
Title string `json:"title"`
|
||||
// the full url for the result
|
||||
Url string `json:"url"`
|
||||
}
|
||||
Reference in New Issue
Block a user