🇻🇳
GPM Automate VI
  • NO-CODE AUTOMATION
    • Một số biến mặc định
    • Các block
      • Normal block
      • For
      • While
      • If
      • Else if
      • Else
    • Variables
      • Set variable
      • Increase variable
      • Decrease variable
      • Count
    • Workflow
      • Exit loop
      • Next loop
      • Delay
    • Text & number
      • Random text
      • Split text
      • Read json
      • Random number
      • Math execute
      • 2FA code
  • File & Folder
    • File exists
    • Copy file
    • Move/rename file
    • Delete file
    • File read all text
    • File read all lines
    • File write all text
    • File append line
    • Read excel file
    • Write excel file
    • Append excel file
    • Folder exists
    • Create folder
    • Move / rename folder
    • Delete folder
    • Folder get file list
  • Clipboard
    • Get clipboard text
    • Set clipboard text
  • HTTP
    • HTTP Request
    • HTTP Download
  • Image Search
    • Wait to image
    • Image exists
    • Image search
    • Ví dụ kết hợp
  • AI
    • ChatGPT
  • Mail
    • Read mail code
    • Read outlook (Oauth2)
  • Navigation
    • New tab
    • Active tab
    • Close tab
    • Go to URL
    • Back URL
    • Reload
    • Get URL
    • Wait URL Changed
  • Element
    • Wait element
    • Get element attribute
    • Get element text
    • Count element
  • Mouse
    • Mouse click
    • Mouse try to click
    • Mouse move
    • Mouse press and hold
    • Mouse release
    • Mouse scroll
  • Keyboard
    • Key press
    • File upload
    • Select dropdown
  • Scroll
    • Random scroll
    • Scroll to top
    • Scroll to bottom
    • Scroll to element
  • Switch
    • Switch to default
    • Switch to frame
    • Switch to popup
  • Cookie
    • Import cookie
    • Export cookie
  • Alert
    • Accept alert
    • Cancel alert
  • Javascript
    • Execute JS code
    • Get extension id
  • References
    • Call function
  • Google service
    • Read google sheet
    • Write google sheet
Powered by GitBook
On this page
  1. HTTP

HTTP Request

Dùng để gửi yêu cầu từ client đến server để truy xuất hoặc gửi dữ liệu qua giao thức HTTP.

PreviousHTTPNextHTTP Download

Last updated 53 minutes ago

Giải thích thêm về 1 số thông số khi dùng action HTTP Request

  1. URL: Địa chỉ của tài nguyên trên server.

  2. Method: Phương thức HTTP để thực hiện yêu cầu, ví dụ: GET, POST, PUT, DELETE,...

  3. Header: Thông tin bổ sung gửi kèm yêu cầu, chẳng hạn như loại nội dung và thông tin xác thực. VD: Authorization: Bearer <token>,...

  4. Data: Dữ liệu gửi kèm trong yêu cầu (chỉ áp dụng cho một số phương thức như POST và PUT) (chính là body/payload).

  5. Use profile's proxy: Sử dụng proxy của profile khi thực hiện request thay vì dùng local ip. Ví dụ về Cách điền 1 HTTP Request trên thực tế có thể xem hình dưới.

Ví dụ 2: Với dạng body x-www-form-urlencoded thì phần body điền theo định dạng: key1=value1&key2=value2&key3=value3 (các cặp key-value nối với nhau bởi dấu &)

HTTP Request 1
HTTP Request 2
HTTP Request gốc trong Postman
HTTP Request 1
HTTP Request 2