puppeteer-with-fingerprints icon indicating copy to clipboard operation
puppeteer-with-fingerprints copied to clipboard

how to select iphone

Open dindamb opened this issue 11 months ago • 4 comments

i bought fingerprint key from bablosoft, but when i using this tags it's error, how to do that ?

const fingerprint = await plugin.fetch(mykey, { tags: ['iPhone', 'Safari'], });

Fingerprint error : Fingerprint with tags iPhone,Safari not found 0.

dindamb avatar Mar 05 '24 04:03 dindamb

I can't reproduce the issue, do you have more filters?

bablosoft avatar Mar 05 '24 19:03 bablosoft

there is no filter, when i used : tags: ['Mobile', 'Chrome'] it's running well, but when i'm using another tags like ['iPhone', 'Safari'] it's show the error. i also try tags: ['Mobile, iPhone', 'Safari'] or ['iPhone', 'Chrome'] it's also error. any suggest to use tags for iphone ?

dindamb avatar Mar 06 '24 01:03 dindamb

i'm just using your sample code,

`const { plugin } = require('puppeteer-with-fingerprints'); const fpsKey = "myApiKey";

(async () => { // Get a fingerprint from the server:

// tags: ['Microsoft Windows', 'Chrome'], // Running well

const fingerprint = await plugin.fetch(fpsKey, { tags: ['iPhone', 'Chrome'], });

// Apply fingerprint: plugin.useFingerprint(fingerprint);

// Launch the browser instance: const browser = await plugin.launch({headless:false});

// The rest of the code is the same as for a standard puppeteer library: const page = await browser.newPage(); await page.goto('https://example.com');

// Print the browser viewport size: console.log( 'Viewport:', await page.evaluate(() => ({ deviceScaleFactor: window.devicePixelRatio, width: document.documentElement.clientWidth, height: document.documentElement.clientHeight, })) );

await page.waitForTimeout(20500); await browser.close(); })();`

Error Code : bablosoft-error

dindamb avatar Mar 06 '24 01:03 dindamb

I can't reproduce the issue, do you have more filters?

how to solve this problem, sir ?

dindamb avatar Mar 09 '24 10:03 dindamb