본문 바로가기

Web Development Tips

Logistics Delivery Status (Lotte, Post Office)

반응형

In this post, we will see how we can add real time delivery status search depending on the kind of different logistics companies. Usually, this can be done by adding the invoice numbers to the search URL and the examples based on the logistics companies follows as below.

Lotte

https://www.lotteglogis.com/home/reservation/tracking/invoiceView?InvNo=<12송장번호>

One thing to note here is that when copy and paste the URL on the search bar, I realized that the ?InvNo part being automatically changed to ?invNo in Chrome making the query invalid as the cases for the query should be an exact match. So make sure you use ?InvNo. We can also send the query under the form data as shown below (this hides the invoice number in the URL).   

Post Office

https://service.epost.go.kr/trace.RetrieveDomRigiTraceList.comm?sid1=<13자리등기번호>

So far we have seen how we can track delivery statuses for some of the logistics companies. 

 

728x90
반응형

'Web Development Tips' 카테고리의 다른 글

Postman - Google OAuth  (0) 2024.03.02
Adding Open With a Program  (0) 2023.09.01
Deprecated  (12) 2023.07.12
Environment Variables  (2) 2023.05.31
Payment Service - Stripe  (1) 2023.05.25