Popularity
3.5
Growing
Activity
0.0
Stable
47
1
15
Programming language: Go
License: BSD 3-clause "New" or "Revised" License
Tags:
Third-party APIs
amazon-product-advertising-api alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view amazon-product-advertising-api alternatives based on common mentions on social networks and blogs.
-
aws-sdk-go
The official AWS SDK for the Go programming language. -
google-cloud
Google Cloud APIs Go Client Library. -
telegram-bot-api
Simple and clean Telegram bot client. -
minio-go
Minio Go Library for Amazon S3 compatible cloud storage. -
facebook
Go Library that supports the Facebook Graph API -
go-twitter
Go client library for the Twitter v1.1 APIs. -
anaconda
A Go client library for the Twitter 1.1 API -
goamz
Popular fork of goamz which adds some missing API calls to certain packages. -
webhooks
Webhook reciever for GitHub and Bitbucket. -
githubql
Go library for accessing the GitHub GraphQL API v4. -
geo-golang
Go Library to access Google Maps, MapQuest, Nominatim, OpenCage, HERE, Bing, and Mapbox geocoding / reverse geocoding APIs. -
go-marathon
A Go library for interacting with Mesosphere's Marathon PAAS. -
tbot
Telegram bot server with API similar to net/http. -
hipchat (xmpp)
A golang package to communicate with HipChat over XMPP. -
gostorm
GoStorm is a Go library that implements the communications protocol required to write Storm spouts and Bolts in Go that communicate with the Storm shells. -
clarifai
A Go client library for interfacing with the Clarifai API. -
hipchat
This project implements a golang client library for the Hipchat API. -
go-trending
Go library for accessing trending repositories and developers at Github. -
circleci
A Go client library for interacting with CircleCI's API -
twitter-scraper
Scrape the Twitter Frontend API without authentication and limits. -
go-tgbot
Pure Golang Telegram Bot API wrapper, generated from swagger file, session-based router and middleware. -
VK SDK for Golang
Golang module for working with VK API -
cachet
Go client library for Cachet (open source status page system) -
megos
A client library for accessing an Apache Mesos cluster -
GoMusicBrainz
a Go MusicBrainz WS2 client library. -
codeship-go
Go client library for interacting with Codeship's API v2. -
mixpanel
Mixpanel is a library for tracking events and sending Mixpanel profile updates to Mixpanel from your go applications. -
telegraph
Telegraph publishing platform API client. -
go-telegraph
Telegraph publishing platform API client.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of amazon-product-advertising-api or a related project?
README
go-amazon-product-advertising-api
Go Client Library for Amazon Product Advertising API
How to Use
go get -u github.com/ngs/go-amazon-product-advertising-api/amazon
package main
import (
"fmt"
"log"
"github.com/ngs/go-amazon-product-advertising-api/amazon"
)
func main() {
client, err := amazon.NewFromEnvionment()
if err != nil {
log.Fatal(err)
}
res, err := client.ItemSearch(amazon.ItemSearchParameters{
SearchIndex: amazon.SearchIndexBooks,
Keywords: "Go 言語",
}).Do()
if err != nil {
log.Fatal(err)
}
fmt.Printf("%d results found\n\n", res.Items.TotalResults)
for _, item := range res.Items.Item {
fmt.Printf(`-------------------------------
[Title] %v
[URL] %v
`, item.ItemAttributes.Title, item.DetailPageURL)
}
}
export AWS_ACCESS_KEY_ID=${YOUR_AWS_ACCESS_KEY_ID}
export AWS_SECRET_ACCESS_KEY=${YOUR_AWS_SECRET_ACCESS_KEY}
export AWS_PRODUCT_REGION=JP
export AWS_ASSOCIATE_TAG=ngsio-22
go run item_search.go
Author
License
See [LICENSE]
*Note that all licence references and agreements mentioned in the amazon-product-advertising-api README section above
are relevant to that project's source code only.