Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 663 Bytes

File metadata and controls

29 lines (20 loc) · 663 Bytes

paypay-sample-ecommerce-backend-java

This is a sample ecommorce application using PayPay's Java SDK.

It creates QR code link and checks the status of the payment.

Configurations

update the API Key and Secret with actual values in application.properties file. Replace your front end URL in the cors.urls property.

cors.urls=http://localhost:8080
API_KEY=API_KEY
API_SECRET=API_SECRET

How to Run the API Server

$ ./gradlew bootRun

You should now have the API server running on http://localhost:5000

Note: To change the port number update the below property in application.properties

server.port=5000