You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IP2Proxy CakePHP plugin enables the user to query an IP address if it was being used as open proxy, web proxy, VPN anonymizer and TOR exits. It lookup the proxy IP address from IP2Proxy BIN Data file. Developers can use the API to query all IP2Proxy BIN databases for applications written using CakePHP.
5
+
IP2Proxy CakePHP plugin enables the user to query an IP address if it was being used as open proxy, web proxy, VPN anonymizer and TOR exit nodes, search engine robots, data center ranges and residential proxies. It lookup the proxy IP address from IP2Proxy BIN Data file or web service. Developers can use the API to query all IP2Proxy BIN databases or web service for applications written using CakePHP.
6
6
7
7
8
8
## INSTALLATION
@@ -38,6 +38,15 @@ namespace App\Controller;
38
38
use App\Controller\AppController;
39
39
use IP2ProxyCakePHP\Controller\IP2ProxyCoresController;
40
40
41
+
// (required) Define IP2Proxy API key.
42
+
define('IP2PROXY_API_KEY', 'your_api_key');
43
+
44
+
// (required) Define IP2Proxy Web service package of different granularity of return information.
45
+
define('IP2PROXY_PACKAGE', 'PX1');
46
+
47
+
// (optional) Define to use https or http.
48
+
define('IP2PROXY_USESSL', false);
49
+
41
50
/**
42
51
* Tests Controller
43
52
*/
@@ -52,8 +61,9 @@ class TestsController extends AppController
"description": "Allow users to query an IP address if it was being used as open proxy, web proxy, VPN anonymizer and TOR exit nodes, search engine robots, data center ranges and residential proxies.",
0 commit comments