Skip to content

ymtszw/elm-amazon-product-advertising

Repository files navigation

elm-amazon-product-advertising

Version CircleCI

Pure-Elm client of Amazon Product Advertising API (PAAPI).

Performs AWS V2 signing for request authentication.

For decoding XML response, we use ymtszw/elm-xml-decode.

Test application

See TestApp.elm. This is actually running in CI.

Note on V2 signing

AWS V2 signing is deprecated and no longer used for newly introduced AWS services. PAAPI is the only remaining exception as far as I am aware. For that I do not expose internal V2 signing functions since it should not have other use cases.

All existing AWS services in all regions should now accept V4 signing (or its S3 variation), so you should use V4 signing when you are to implement clients for other services. Pure-Elm V4 signing implementation is available in ktonon/elm-aws-core.