Diego
Diego
I'm also running OpenCV 3.1.0! (Latest development version, from github)
mm this could be why my requests to `https://www.tiktok.com/api/recommend/item_list/?aid=1988` (the For You feed) are failing of a sudden. It'd be great to have this Edit: So I tried adding something...
I'm starting to understand more about this repo. In `index.js`, the URL signature is produced by calling `generateSignature()` (which is a function attached to the page, so you call it...
@Popesites Thank you, yes, I also looked for `signer.js` in the history, hoping to get it in decoded form to see how the signatures are being generated. But even from...
@Popesites In [reply to you](https://github.com/davidteather/TikTok-Api/issues/845#issuecomment-1054266713), I did try editing [webmssdk.js](https://sf16-secsdk.ttwstatic.com/obj/rc-web-sdk-gcs/webmssdk/1.0.0.200/webmssdk.js) that way, by renaming `byted_acrawler` (to, say, `byted_acrawlee`). Then you do: ``` window.generateXBogus = function generateXBogus(url){ // this doesn't fail...
Yes, I was wrong about `frontierSign`; I was passing it the entire URL, but Carcabot says it may only be the query string. I don't know if you apply `generateSignature()`...
@Popesites I already got `frontierSign()` to work by renaming `byted_acrawler` in `webmssdk.js` (and, yes, you load the entire `webmssdk.js`). But the `X-Bogus` values I get seem too short (only 16...
I run into trouble when I try to modify the gulpfile.js. When I include the following line ``` .pipe(greplace('static_dir: ../bower_components','static_dir: bower_components')) ``` in the gulpfile.js file and run the gulp...
So by adding the following line (at the beginning of gulpfile.js, with the rest of the var foo = require('bar') ) it worked! ``` var greplace = require('gulp-replace'); ``` I...
In Python, you can do: ```Python from playwright.sync_api import sync_playwright import tkinter root = tkinter.Tk() root_ndim_x = root.winfo_screenwidth() root_ndim_y = root.winfo_screenheight() with sync_playwright() as p: browser = p.firefox.launch(headless=True) context =...