BitBrowser
Official WebsiteDownloadContact Us
BitBrowser
BitBrowser
  • BitBrowser - Professional Anti-detect Browser
  • Guide(Graphic)
    • Quick Start
      • OS and Hardware
      • Sign Up, Download and Install
      • Subscribe, Change plan and Renew
    • Browser Profiles
      • Add a new browser profile
      • Batch lmport Profiles
      • Batch add
      • Features and functions
      • Export browser profiles
      • Batch update browser profiles
      • Batch export cookies/Batch update cookies
    • Recycle Bin
    • Users
      • Roles and Permissions
      • Add Users and Set Permissions
    • Referral
    • Proxy
      • Http/Https/Sock5/Ssh
      • Luminati/Oxylabs/Iphtml/Ipidea
      • Extract proxy IP with api
      • How to use Rola-IP
      • How to use Dove Proxy
      • How to use IPIDEA
      • How to use Proxy302
      • How to use Pia S5
      • How to use 922 S5
      • How to use IP2World Proxy in BitBrowser?
      • How to use IPHTML
      • How to use BrightData
      • How to use PYPROXY S5
      • How to Setup NetNut Proxy on BitBrowser Browser
      • How to Set Up Swiftproxy Proxy
      • Proxy IP Management
    • Extensions
    • Account Security
      • How to change password
      • How to retrieve the password
      • How to retrieve the username
      • How to turn on two-factor verification
  • Guide(Videos)
    • Introduction
    • Users
    • Http/Https/Socks5 Proxy
    • Luminati/Oxylabs/Iphtml Proxy
    • Extract IP
    • IPIDEA Proxy
    • ABCproxy
  • Q&A
    • Getting Started
      • Introduction
      • Support for trial
      • How many users can be created?
      • Which platforms are supported?
      • What browser management can do?
      • What groups can be used for?
      • Do we provide proxy IP?
      • How to choose a proxy type?
    • Issues
      • Import failed
      • Display blank
      • Crashed
      • Browser launch failed
      • Why is there a discrepancy in IP detection?
      • How to increase or decrease users?
      • How to get promotion rewards?
      • How to detect the local network environment?
      • Why do programs crash or get stuck when the computer memory is clearly not full?
    • Master Tutorial
      • Save proxy traffic with proxy IP balcklist function
      • How to import bookmarks for all browsers?
      • How to autofill passwords for all browsers?
      • How many accounts can each browser manage?
      • How to clone a browser profile?
      • How to clear cache files and change cache directory of browser profile?
      • How to use Auto Paste?
      • How to import cookies to a browser profile?
      • How to fix the browser proxy failure?
      • How to identify different browsers on the taskbar?
      • How to update user permission?
  • API Docs
    • Introduction
    • API Issues
    • Browser Profiles
    • Groups
    • Example of interface request parameters
    • Local Library Data Interface
    • Appendix
    • Cloud Phone Profiles
  • RPA Guide
    • RPA Usage Guide
  • Browser Fingerprinting
    • IPv4
    • IPv6
    • Language
    • Resolution
    • Audio
    • Timezone
    • localStorage
    • Geo
    • Fonts
    • Do Not Track
    • SSL
    • Proxy
    • DNS
    • Cookie
    • Canvas
    • WebGL
    • User Agent
    • IndexedDB
    • WebRTC
  • Upgrade Log
  • ⚒️Synchronize System
    • Guide(Graphic)
    • Guide(Video)
    • Q&A
  • Cloud Phone
    • Time-Based Billing
      • Introduction
      • Add Phone Profile
      • Basic Features of Cloud Phone
      • Basic Features of Phone Profile
      • Batch Update Phone Profiles
      • Batch Import/Export Phone Profile
      • Computing Power Basic Features
      • Cloud phone Bill
    • Plan-Based Billing
      • Cloud Phone(Video)
      • Cloud Phone(Graphic)
        • Introduction
        • Phone Profiles
          • Subscribe
          • Add
          • Basic features
            • Edit Seq
            • Update Profile Name
            • Update Group
            • Update Proxy
            • Update Remarks
            • Edit Profile
            • Open/Close Phone Profile
            • Search Phone Profiles
            • Customize Columns
            • Adjust Phone Profile Window Bounds
            • Files
            • Fav
            • Createable Phone Profiles
        • Computing Power
          • Purchase Computing Power
          • Basic features
            • Search power
            • Edit Computing Power Name
            • Update Remarks
            • Renew
            • Auto-renewal
            • Delete Computing Power
        • Phone Profile Group
          • Add Group
          • Search Group
          • Basic features
        • Cloud Phone Basics
        • Cloud Phone Bill
        • Proxy IP
          • How to set up 922 S5 proxy
    • Synchronizer
      • Graphic
Powered by GitBook
On this page
  • Paginated Query of Log List
  • Add Log
  • Update Log
  • Delete Log
  • Get Log Details
  • Clear All Log Records (No Parameters)
  1. API Docs

Local Library Data Interface

Note: The local library data interface is independent of the client and operates completely separately. It is a standalone logging system. The recorded data can be viewed on the “Operation Log > Local Library Data” page and can also be queried using the API. This feature helps script authors and users in logging custom data, or can serve as a simple local database.

Paginated Query of Log List

POST: /extralog/list

// Example of request body
{
  "page": 0,
  "page_size": 10,
  "search_key": "",
  "search_value": "",
  "order_by": "desc"
}
  • Parameter Details

Parameter
Type
Required
Description

page

int

Yes

Page number, starting from 0

page_size

int

Yes

Number of records per page, default is 10

search_key

string

Yes

Search field, specific fields refer to the add interface

search_value

string

Yes

Search value for the field, performs fuzzy search based on this value

order_by

string

No

Sorting parameter, default is by id, options: desc or asc | asc

Add Log

POST: /extralog/add

// Example of request body
{
  "log_key": "666",
  "log_name": "i am name",
  "log_value": "de333f",
  "log_type": "Browser",
  "log_desc": "i am a desc",
  "log_remark": "remark",
  "log_extra_info": "Custom info content, can store serialized structured data like stringified JSON"
}
  • Parameter Details

Parameter
Type
Required
Description

log_name

string

Yes

Custom name name

log_key

string

Yes

Custom key, allows the user to generate a unique key for each record, making it easier to use

log_type

string

Yes

Custom type, logs can be categorized for easier searching

log_value

string

Yes

Custom value, can be used for storing values or other data

log_desc

string

No

Custom description desc

log_remark

string

No

Custom remark remark

log_extra_info

string

No

Custom info content, can store serialized structured data like stringified JSON

Update Log

The update interface fields are the same as the add interface. You must include the id field, and only the fields that need to be modified should be provided. There is no need to pass all fields.

// Example of request body
{
  "id": 122,
  "log_name": "I'm log name"
}
  • Parameter Details

Parameter
Type
Required
Description

id

int

Yes

Record ID

...

string

No

Other fields are the same as in the Add Log section

Delete Log

POST: /extralog/delete

// Example of request body
{
  "id": 12
}

Get Log Details

POST: /extralog/detail

// Example of request body
{
  "id": 12,
  "name": "dsds"
}

```
// 返回详情数据示例
{
  "success": true,
  "data": {
    "id": 8,
    "log_username": "username",
    "log_userid": "3dsd3dsdd3dsdsdssds3dsssddsdsd",
    "created_time": "2024-07-03 10:11:32",
    "log_name": "i am name",
    "log_key": "33",
    "log_type": "Browser",
    "log_value": "Log value",
    "log_desc": "i am a desc",
    "log_remark": "remark",
    "log_extra_info": "0.0"
}
}

Clear All Log Records (No Parameters)

Warning: This interface will clear all local log data. This action cannot be undone, so use it with caution.

POST: /extralog/clear

PreviousExample of interface request parametersNextAppendix

Last updated 5 months ago