1. 1.Prepare
LME OPEN API
  • 1.Prepare
    • RSA keys
    • http format
  • 2.API list
    • 1).createOrder
    • 2).order detail
    • 3).Tracing push
    • 4).cancelOrder
    • 5).queryOrderRoute
    • 6).updateOrder
    • 7).queryOrderRouteV2
    • 8).Tracing push V2
    • 9).addressValidate
    • 10).queryLabel
  • 3.SDK
    • java sdk
    • php sdk
  • 4.ERROR CODE MAPPING
  • 5. Deliverable postal codes
    • Australia
    • New Zealand
    • United States
    • Canada
  • 6.Label
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
  1. 1.Prepare

generate RSA keys

RSA public & private key:
option one: generate by website tool and copy the text marked red:https://www.lddgo.net/encrypt/rsakey
image.png
option two:generate by openssl commond:
1.
genrsa rsa private key: openssl genrsa -out rsa_private_key.pem 1024
2.
transe to PKCS8, and copy the output as thirdPrivateKey: openssl pkcs8 -topk8 -inform PEM -in rsa_private_key.pem -nocrypt -outform PEM
3.
genrsa rsa public key, and copy the text as thirdPublicKey: openssl rsa -in rsa_private_key.pem -out rsa_public_key.pem -pubout
Modified at 2024-03-11 06:32:20
Previous
1.Prepare
Next
http format
Built with