Today I started getting this error "level":"error","component":"scrapemate","error":"could not convert to string" #151
-
|
Not sure what has changed but today all of my attempts end in failure as : |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
|
Same same! Was loving the tool before this happened. |
Beta Was this translation helpful? Give feedback.
-
|
I got it working back in June, but today it stopped working and I'm seeing the same error message again. Anyone else having the same issue? {"level":"info","component":"scrapemate","job":"Job{ID: 2a6298c5-2f22-4b2d-875c-36e589cb9687, Method: GET, URL: https://www.google.com/maps/place/***=0&hl=de&rclk=1, UrlParams: map[hl:de]}","error":"could not convert to string","status":"failed","duration":1362.1217,"time":"2025-09-10T21:54:36.6420319Z","message":"job finished"} |
Beta Was this translation helpful? Give feedback.
gmaps/place.go
const js = function parse() { const inputString = window.APP_INITIALIZATION_STATE[3]["Tf"][6] return inputString }
const js = `
function parse() {
const appState = window.APP_INITIALIZATION_STATE[3];
if (!appState) {
return null;
}
for (let i = 65; i <= 90; i++) {
const key = String.fromCharCode(i) + "f";
if (appState[key] && appState[key][6]) {
return appState[key][6];
}
}
return null;
}
`
replace this part ,and rebuild the exe file , it will work