-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented: Postal Address Validation service (#1tkuhrm) #5
base: main
Are you sure you want to change the base?
Conversation
@dixitdeepak Please check |
…country code etc also (#1tkuhrm)
@dixitdeepak @gurveenbagga Please review this PR |
…name and address of the party (#1tkuhrm)
service/mantle/ups/UpsServices.xml
Outdated
@@ -31,20 +31,145 @@ | |||
RestClient restClient = ec.service.rest() | |||
restClient.method(methodType) | |||
restClient.uri(connectUrl) | |||
.addHeader("AccessLicenseNumber", "3CECCCED52F173F2") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the credentials.
service/mantle/ups/UpsServices.xml
Outdated
@@ -31,20 +31,145 @@ | |||
RestClient restClient = ec.service.rest() | |||
restClient.method(methodType) | |||
restClient.uri(connectUrl) | |||
.addHeader("AccessLicenseNumber", upsShippingConfig.accessLicenceNumber) | |||
.addHeader("Password", upsShippingConfig.password) | |||
.addHeader("Username", upsShippingConfig.userId) | |||
.basicAuth(upsShippingConfig.userId, upsShippingConfig.password) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove basicAuth as we are adding headers?
… name in validation service (#1tkuhrm)
Related ticket:
Link: [https://app.clickup.com/t/1tkuhrm]