1. Go to this page and download the library: Download microcore/foursquare library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// Generates an authentication link for you to display to your users
// (https://foursquare.com/oauth2/authenticate?...)
$auth_link = $Foursquare->getRedirectUrl();
// Converts an authentication code (sent from foursquare to your $redirect_url) into an access token
if ( ($response = $Foursquare->getTokenByCode($_REQUEST['code'])) && !isset( $response['error'] ) && isset( $response['access_token'] ) ) {
$token = $response['access_token'];
$Foursquare->setAccessToken($token);
}
$connect = new \Foursquare\Client\FoursquareConnect($this);
if ( !empty($this->request['code']) ) {
if ( $this->request['state'] ) {
$base = explode( '-', $this->request['state'] );
if(count($base) == 2){
$this->request['state'] = $_REQUEST['state'] = $base[1];
try {
$connect->finishLogin($base[0]);
} catch( Exception $error ) {
$msg = $error->getMessage();
switch( $msg ) {
default:
$this->View->set('error', 'Error 999990. No data received from foursquare, please register');
break;
case 'API_NOT_SET_UP':
$this->View->set('error', 'Error 999991. No data received from foursquare, please register');
break;
case 'NOT_REMOTE_MEMBER':
$this->View->set('error', 'Error 999992. No data received from foursquare, please register ');
break;
case 'CREATION_FAIL':
$this->View->set('error', 'Error 999993. No data received from foursquare, please register ');
break;
case 'CREATION_FAIL_TOKEN':
$this->View->set('error', 'Error 999994. No data received from foursquare, please register ');
break;
case 'MERGE_SOCIAL_ACCOUNT':
$this->View->set('error', 'Error 999995. Another user already linked his profile with this Google Account');
break;
case 'SOCIAL_NETWORK_ERROR':
$this->View->set('error', 'Error 999996. Foursquare has returned error');
break;
}
$this->View->errorAction('custom_error');
}
} else {
$this->redirect("/login");
}
} else {
$connect->finishConnection();
}
} else {
$connect->redirectToConnectPage();
}
$this->redirect("/login");
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.