Popularity
3.4
Stable
Activity
0.0
Stable
57
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
AWS SDK for the Go programming language. -
go-openai
OpenAI ChatGPT, GPT-3, GPT-4, DALL·E, Whisper API wrapper for Go -
google-cloud
Google Cloud Client Libraries for Go. -
telegram-bot-api
Golang bindings for the Telegram Bot API -
telebot
Telebot is a Telegram bot framework in Go. -
minio-go
MinIO Go client SDK for S3 compatible object storage -
go-twitter
Go Twitter REST and Streaming API v1.1 -
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
:fishing_pole_and_fish: Webhook receiver for GitHub, Bitbucket, GitLab, Gogs -
githubql
Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql). -
twitter-scraper
Scrape the Twitter frontend API without authentication with Golang. -
geo-golang
Go library to access geocoding and reverse geocoding APIs -
go-marathon
A GO API library for working with Marathon -
lark
Feishu(飞书)/Lark Open API Go SDK, Support ALL Open API and Event Callback. -
openaigo
OpenAI GPT3/3.5 and GPT4 ChatGPT API Client Library for Go, simple, less dependencies, and well-tested -
VK SDK for Golang
Golang module for working with VK API -
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
DEPRECATED: please use https://github.com/Clarifai/clarifai-go-grpc -
go-lark
An easy-to-use SDK for Feishu and Lark Open Platform (Instant Messaging API only) -
go-trending
Go library for accessing trending repositories and developers at Github. -
hipchat
This project implements a Go client library for the Hipchat API. -
circleci
Go library for interacting with CircleCI -
simples3
Simple no frills AWS S3 Golang Library using REST with V4 Signing (without AWS Go SDK) -
go-tgbot
Golang telegram bot API wrapper, session-based router and middleware -
cachet
Go(lang) client library for Cachet (open source status page system). -
go-atlassian
✨ Golang Client Library for Atlassian Cloud. -
google-play-scraper
Golang scraper to get data from Google Play Store
Collect and Analyze Billions of Data Points in Real Time
Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
Promo
www.influxdata.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.