mirror of
https://git.lolcat.ca/lolcat/4get.git
synced 2024-11-08 17:43:07 -05:00
fixed soundcloud, fixed API not working, upgraded browser UA
This commit is contained in:
parent
697ef3733d
commit
faece63356
6 changed files with 13 additions and 13 deletions
|
@ -16,9 +16,9 @@ $frontend = new frontend();
|
||||||
/*
|
/*
|
||||||
Captcha
|
Captcha
|
||||||
*/
|
*/
|
||||||
include "lib/captcha_gen.php";
|
include "lib/bot_protection.php";
|
||||||
$null = null;
|
$null = null;
|
||||||
new captcha($null, $null, $null, "images", false);
|
new bot_protection($null, $null, $null, "images", false);
|
||||||
|
|
||||||
[$scraper, $filters] = $frontend->getscraperfilters(
|
[$scraper, $filters] = $frontend->getscraperfilters(
|
||||||
"images",
|
"images",
|
||||||
|
|
|
@ -16,9 +16,9 @@ $frontend = new frontend();
|
||||||
/*
|
/*
|
||||||
Captcha
|
Captcha
|
||||||
*/
|
*/
|
||||||
include "lib/captcha_gen.php";
|
include "lib/bot_protection.php";
|
||||||
$null = null;
|
$null = null;
|
||||||
new captcha($null, $null, $null, "music", false);
|
new bot_protection($null, $null, $null, "music", false);
|
||||||
|
|
||||||
[$scraper, $filters] = $frontend->getscraperfilters(
|
[$scraper, $filters] = $frontend->getscraperfilters(
|
||||||
"music",
|
"music",
|
||||||
|
|
|
@ -16,9 +16,9 @@ $frontend = new frontend();
|
||||||
/*
|
/*
|
||||||
Captcha
|
Captcha
|
||||||
*/
|
*/
|
||||||
include "lib/captcha_gen.php";
|
include "lib/bot_protection.php";
|
||||||
$null = null;
|
$null = null;
|
||||||
new captcha($null, $null, $null, "news", false);
|
new bot_protection($null, $null, $null, "news", false);
|
||||||
|
|
||||||
[$scraper, $filters] = $frontend->getscraperfilters(
|
[$scraper, $filters] = $frontend->getscraperfilters(
|
||||||
"news",
|
"news",
|
||||||
|
|
|
@ -16,9 +16,9 @@ $frontend = new frontend();
|
||||||
/*
|
/*
|
||||||
Captcha
|
Captcha
|
||||||
*/
|
*/
|
||||||
include "lib/captcha_gen.php";
|
include "lib/bot_protection.php";
|
||||||
$null = null;
|
$null = null;
|
||||||
new captcha($null, $null, $null, "videos", false);
|
new bot_protection($null, $null, $null, "videos", false);
|
||||||
|
|
||||||
[$scraper, $filters] = $frontend->getscraperfilters(
|
[$scraper, $filters] = $frontend->getscraperfilters(
|
||||||
"videos",
|
"videos",
|
||||||
|
|
|
@ -16,9 +16,9 @@ $frontend = new frontend();
|
||||||
/*
|
/*
|
||||||
Captcha
|
Captcha
|
||||||
*/
|
*/
|
||||||
include "lib/captcha_gen.php";
|
include "lib/bot_protection.php";
|
||||||
$null = null;
|
$null = null;
|
||||||
new captcha($null, $null, $null, "web", false);
|
new bot_protection($null, $null, $null, "web", false);
|
||||||
|
|
||||||
[$scraper, $filters] = $frontend->getscraperfilters(
|
[$scraper, $filters] = $frontend->getscraperfilters(
|
||||||
"web",
|
"web",
|
||||||
|
|
|
@ -83,7 +83,7 @@ class config{
|
||||||
|
|
||||||
// Default user agent to use for scraper requests. Sometimes ignored to get specific webpages
|
// Default user agent to use for scraper requests. Sometimes ignored to get specific webpages
|
||||||
// Changing this might break things.
|
// Changing this might break things.
|
||||||
const USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:122.0) Gecko/20100101 Firefox/122.0";
|
const USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:124.0) Gecko/20100101 Firefox/124.0";
|
||||||
|
|
||||||
// Proxy pool assignments for each scraper
|
// Proxy pool assignments for each scraper
|
||||||
// false = Use server's raw IP
|
// false = Use server's raw IP
|
||||||
|
@ -118,8 +118,8 @@ class config{
|
||||||
// SOUNDCLOUD
|
// SOUNDCLOUD
|
||||||
// Get these parameters by making a search on soundcloud with network
|
// Get these parameters by making a search on soundcloud with network
|
||||||
// tab open, then filter URLs using "search?q=". (No need to login)
|
// tab open, then filter URLs using "search?q=". (No need to login)
|
||||||
const SC_USER_ID = "59333-426459-717969-168008";
|
const SC_USER_ID = "447501-577662-794348-352629";
|
||||||
const SC_CLIENT_TOKEN = "8BBZpqUP1KSN4W6YB64xog2PX4Dw98b1";
|
const SC_CLIENT_TOKEN = "VNc62l3wxDWS0Ol62j5UYNc1gsZ3UXPv";
|
||||||
|
|
||||||
// MARGINALIA
|
// MARGINALIA
|
||||||
// Get an API key by contacting the Marginalia.nu maintainer. The "public" key
|
// Get an API key by contacting the Marginalia.nu maintainer. The "public" key
|
||||||
|
|
Loading…
Reference in a new issue