Skip to content

Instantly share code, notes, and snippets.

View Vinh2uang's full-sized avatar

Nguyen Vinh Quang Vinh2uang

View GitHub Profile
@Vinh2uang
Vinh2uang / Shopee.js
Last active December 8, 2024 17:07
Cách tính tổng số tiền đã mua hàng trên Shopee
/*CÁCH DÙNG:
B1: Mở Google Chrome, truy cập và đăng nhập vào Shopee.vn
B2: Vào mục "Đơn Mua": https://shope.ee/7pHF2r5lo0
B3: Nhấn tổ hợp phím Ctrl+Shift+J để mở tab "Console"
B4: Copy toàn bộ Code ở dưới. Paste vào tab "Console". Sau đó nhấn "Enter".
B5: Ra 1 box nhỏ cạnh trang Shopee, các bạn kéo ra, copy và paste vào Excel hoặc Google Sheet để xem
Nguồn: @nttkq */
async function getOrders(offset, limit) {
let url = "https://shopee.vn/api/v4/order/get_all_order_and_checkout_list?limit=" + limit + "&offset=" + offset;