Files
ai_mip/localAPI-main/py-examples/example-check-profile-status.py

9 lines
192 B
Python
Raw Normal View History

2026-01-13 18:59:26 +08:00
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)