Files
ai_mip/localAPI-main/py-examples/example-check-profile-status.py
2026-01-13 18:59:26 +08:00

9 lines
192 B
Python

import requests
profileId = 'XX'
url = "http://localhost:50325/api/v1/browser/active?user_id=" + profileId
response = requests.request("GET", url, headers={}, data={})
print(response.text)