gologin 1.0.33 → 1.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gologin",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "A high-level API to control Orbita browser over GoLogin API",
5
5
  "main": "./gologin.js",
6
6
  "repository": {
@@ -371,7 +371,7 @@ class GoLogin(object):
371
371
  return json.loads(requests.get(API_URL + '/browser/fingerprint?os=' + os_type, headers=self.headers()).content.decode('utf-8'))
372
372
 
373
373
  def profiles(self):
374
- return json.loads(requests.get(API_URL + '/browser/', headers=self.headers()).content.decode('utf-8'))
374
+ return json.loads(requests.get(API_URL + '/browser/v2', headers=self.headers()).content.decode('utf-8'))
375
375
 
376
376
  def create(self, options={}):
377
377
  profile_options = self.getRandomFingerprint(options)