We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fatal error: Class 'Instagram\Core\Proxy' not found in C:\xampp\htdocs\Insta\Auth.php on line 54
Auth.php on line 54: $this->proxy = new \Instagram\Core\Proxy( $client ? $client : new \Instagram\Net\CurlClient );
I hope someone help me with that, I try to solve it for 5 hours!
I have create index.php, and this the code inside:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Fatal error: Class 'Instagram\Core\Proxy' not found in C:\xampp\htdocs\Insta\Auth.php on line 54
Auth.php on line 54:
$this->proxy = new \Instagram\Core\Proxy( $client ? $client : new \Instagram\Net\CurlClient );
I hope someone help me with that, I try to solve it for 5 hours!
I have create index.php, and this the code inside:
'*deleted*', 'client_secret' => '*deleted*', 'redirect_uri' => '*deleted*', 'scope' => array( 'likes', 'comments', 'relationships' ) ); $auth = new Instagram\Auth( $auth_config ); if (isset($_GET['code']) && !empty($_GET['code'])){ $_SESSION['instagram_access_token'] = $auth->getAccessToken( $_GET['code'] ); echo 'ok'; }else{ $auth->authorize(); } ``` ?>The text was updated successfully, but these errors were encountered: