Closed gwharton closed 2 years ago
The demo signature in the README assumes that you're running the container on port 8080.
By changing the port number on the host to 8083, you're changing the @authroity
value to localhost:8083
, which changes the correct signature value.
Run your docker container using port 8080
, and the signature in the README will verify correctly. Otherwise, you'll need to calculate the correct signature for your request with the changed port number.
version: '3.8'
services:
ebay:
image: "ebay/digital-signature-verification-ebay-api:latest"
ports:
- "8080:8080"
AHH right. Gotcha. Makes perfect sense.
Still unable to validate test signature provided by eBay
docker-compose.yml
docker-compose up