Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6847775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:47:10+00:00 2026-05-27T00:47:10+00:00

I would like to use R to send requests to the Amazon Product API

  • 0

I would like to use R to send requests to the Amazon Product API service.

Is there a way to authenticate and query the Amazon Product API with R without getting the following error:

“The request signature we calculated does not match the signature you provided. Check your AWS Secret Access Key and signing method. Consult the service documentation for details.”

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T00:47:11+00:00Added an answer on May 27, 2026 at 12:47 am

    Try this

    This should perform a search using the Product Advertising API, which I think you mean.

    You need to supply the AWSAccessKeyId and AWSsecretkey,

    which can be acquired on: http://docs.amazonwebservices.com/AWSECommerceService/2011-08-01/GSG/

    search.amazon <- function(Keywords, SearchIndex = 'All', AWSAccessKeyId, AWSsecretkey, AssociateTag, ResponseGroup = 'Small', Operation = 'ItemSearch'){
         library(digest)
         library(RCurl)
    
     base.html.string <- "http://ecs.amazonaws.com/onca/xml?"
     SearchIndex <- match.arg(SearchIndex, c('All',
                                                 'Apparel',
                                                 'Appliances',
                                                 'ArtsAndCrafts',
                                                 'Automotive',
                                                 'Baby',
                                                 'Beauty',
                                                 'Blended',
                                                 'Books',
                                                 'Classical',
                                                 'DigitalMusic',
                                                 'DVD',
                                                 'Electronics',
                                                 'ForeignBooks',
                                                 'Garden',
                                                 'GourmetFood',
                                                 'Grocery',
                                                 'HealthPersonalCare',
                                                 'Hobbies',
                                                 'HomeGarden',
                                                 'HomeImprovement',
                                                 'Industrial',
                                                 'Jewelry',
                                                 'KindleStore',
                                                 'Kitchen',
                                                 'Lighting',
                                                 'Magazines',
                                                 'Marketplace',
                                                 'Miscellaneous',
                                                 'MobileApps',
                                                 'MP3Downloads',
                                                 'Music',
                                                 'MusicalInstruments',
                                                 'MusicTracks',
                                                 'OfficeProducts',
                                                 'OutdoorLiving',
                                                 'Outlet',
                                                 'PCHardware',
                                                 'PetSupplies',
                                                 'Photo',
                                                 'Shoes',
                                                 'Software',
                                                 'SoftwareVideoGames',
                                                 'SportingGoods',
                                                 'Tools',
                                                 'Toys',
                                                 'UnboxVideo',
                                                 'VHS',
                                                 'Video',
                                                 'VideoGames',
                                                 'Watches',
                                                 'Wireless',
                                                 'WirelessAccessories'))
     Operation <- match.arg(Operation, c('ItemSearch',
                                                 'ItemLookup',
                                                 'BrowseNodeLookup',
                                                 'CartAdd',
                                                 'CartClear',
                                                 'CartCreate',
                                                 'CartGet',
                                                 'CartModify',
                                                 'SimilarityLookup'))
     ResponseGroup <- match.arg(ResponseGroup, c('Accessories',
                                                 'AlternateVersions',
                                                 'BrowseNodeInfo',
                                                 'BrowseNodes',
                                                 'Cart',
                                                 'CartNewReleases',
                                                 'CartTopSellers',
                                                 'CartSimilarities',
                                                 'Collections',
                                                 'EditorialReview',
                                                 'Images',
                                                 'ItemAttributes',
                                                 'ItemIds',
                                                 'Large',
                                                 'Medium',
                                                 'MostGifted',
                                                 'MostWishedFor',
                                                 'NewReleases',
                                                 'OfferFull',
                                                 'OfferListings',
                                                 'Offers',
                                                 'OfferSummary',
                                                 'PromotionSummary',
                                                 'RelatedItems',
                                                 'Request',
                                                 'Reviews',
                                                 'SalesRank',
                                                 'SearchBins',
                                                 'Similarities',
                                                 'Small',
                                                 'TopSellers',
                                                 'Tracks',
                                                 'Variations',
                                                 'VariationImages',
                                                 'VariationMatrix',
                                                 'VariationOffers',
                                                 'VariationSummary'),
                                several.ok = TRUE)
     version.request = '2011-08-01'
     Service = 'AWSECommerceService'
     if(!is.character(AWSsecretkey)){
      message('The AWSsecretkey should be entered as a character vect, ie be qouted')
     }
    
     pb.txt <- Sys.time()
    
     pb.date <- as.POSIXct(pb.txt, tz = Sys.timezone)
    
     Timestamp = strtrim(format(pb.date, tz = "GMT", usetz = TRUE, "%Y-%m-%dT%H:%M:%S.000Z"), 24)
    
     str = paste('GET\necs.amazonaws.com\n/onca/xml\n',
            'AWSAccessKeyId=', curlEscape(AWSAccessKeyId),
                 '&AssociateTag=', AssociateTag,
                 '&Keywords=', curlEscape(Keywords),
                 '&Operation=', curlEscape(Operation),
                 '&ResponseGroup=', curlEscape(ResponseGroup),
                 '&SearchIndex=', curlEscape(SearchIndex),
                 '&Service=AWSECommerceService',
                 '&Timestamp=', gsub('%2E','.',gsub('%2D', '-', curlEscape(Timestamp))),
                 '&Version=', version.request,
                 sep = '')
    
     ## signature test
     Signature = curlEscape(base64(hmac( enc2utf8((AWSsecretkey)), enc2utf8(str1), algo = 'sha256', serialize = FALSE,  raw = TRUE)))
    
     AmazonURL <- paste(base.html.string,
                 'AWSAccessKeyId=', AWSAccessKeyId,
                 '&AssociateTag=', AssociateTag,
                 '&Keywords=', Keywords,
                 '&Operation=',Operation,
                 '&ResponseGroup=',ResponseGroup,
                 '&SearchIndex=', SearchIndex,
                 '&Service=AWSECommerceService',
                 '&Timestamp=', Timestamp,
                 '&Version=', version.request,
                 '&Signature=', Signature
                 sep = '')
     AmazonResult <- getURL(AmazonURL)
     return(AmazonResult)
    }
    

    The URL which we get from running this code wont give a signature address. To get a signature address use the following web address and paste the URL over there and click on Display Signed URL.

    http://associates-amazon.s3.amazonaws.com/signed-requests/helper/index.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to use AWS and especially Amazon Simple Email Service (SES) in
I would like to use Ruby Net::SMTP to send email. The routine send_message( msgstr,
I would like to use NTLM authentication with Tomcat so that Iexplorer send automatically
I would like to send multiple HTTP requests to a server, using pipelining where
I would like to send only the requests ending in .html through dispatcher-servlet and
I am using AdoNetAppender (SQL server) in my asp.net application and would like use
I would like to use a language that I am familiar with - Java,
I would like to use something like CLR Profiles on .Net 2.0 to see
I would like to use as and is as members of an enumeration. I
I would like to use a component that exposes the datasource property, but instead

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.