Compare commits

..

5 Commits

Author SHA1 Message Date
Sinh cb517934a3 Merge branch 'feat/viettel/change-base-url' into develop 2024-12-05 14:06:43 +07:00
Sinh 3c9e732552 feat(vtp): change base url 2024-12-05 14:06:34 +07:00
sinhluu 5c20536492 Merge pull request 'feat: update URLs and authentication base across files' (#20) from viettel-ffm into master
Reviewed-on: #20
2024-07-18 09:16:25 +00:00
Sinh 4b621b9b41 feat: update URLs and authentication base across files
- Update production URLs in `viettel_ffm.go`
- Change the authentication base URLs for staging and production

Signed-off-by: Sinh <luuvansinh555@gmail.com>
2024-07-18 16:15:58 +07:00
sinhluu 91e69993af Merge pull request 'viettel-ffm' (#19) from viettel-ffm into master
Reviewed-on: #19
2024-07-11 03:04:15 +00:00
1 changed files with 4 additions and 5 deletions

View File

@ -17,12 +17,11 @@ import (
)
const (
baseURLStag = "https://stg-gw.viettelpost.vn"
baseURLAuthStag = "https://stg-keycloak.viettelpost.vn"
baseURLStag = "https://gw.viettelpost.vn"
baseURLAuthStag = "https://dws-sso.viettelpost.vn"
// TODO: update prod url
baseURLProd = ""
baseURLAuthProd = ""
baseURLProd = "https://gw.viettelpost.vn"
baseURLAuthProd = "https://dws-sso.viettelpost.vn"
pathAuth = "/realms/wms/protocol/openid-connect/token"
pathUpdateORLogisticInfo = "/wms-core/api/v1/obms/outbound-request/outbound-request-partner/%s"