1. Go to this page and download the library: Download symfonycorp/connect 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/ */
symfonycorp / connect example snippets
// index.php
use SymfonyCorp\Connect\Api\Api;
use SymfonyCorp\Connect\OAuthConsumer;
$app = new Silex\Application();
$app['connect_id'] = 'application_id';
$app->register(new Silex\Provider\UrlGeneratorServiceProvider());
$app->register(new Silex\Provider\SessionServiceProvider());
$app['connect_secret'] = 'application_secret';
// List of scope copy-pasted from your application page on SymfonyConnect
$app['connect_scope'] = array(
'SCOPE_ADDITIONAL_EMAILS',
'SCOPE_BIRTHDAY',
'SCOPE_EMAIL',
'SCOPE_LOCATION',
'SCOPE_PUBLIC',
'SCOPE_SSH_KEYS',
);
$app['connect_consumer'] = new OAuthConsumer(
$app['connect_id'],
$app['connect_secret'],
implode(' ', $app['connect_scope']) // scope MUST be space separated
);
$app['connect_api'] = new Api();
// index.php
$app->get('/connect/new', function () use ($app) {
$callback = $app['url_generator']->generate('connect_callback', array(), true);
$url = $app['connect_consumer']->getAuthorizationUri($callback);
return $app->redirect($url);
})->bind('connect_auth');
$app->get('/connect/callback', function (Request $request) use ($app) {
// There was an error during the workflow.
if ($request->get('error')) {
throw new \RuntimeException($request->get('error_description'));
}
// Everything went fine, you can now request an access token.
try {
$data = $app['connect_consumer']->requestAccessToken($app['url_generator']->generate('connect_callback', array(), true), $request->get('code'));
} catch (OAuthException $e) {
throw $e;
}
// At this point, we have an access token and we can use the SDK to request the API
$app['connect_api']->setAccessToken($data['access_token']); // All further request will be done with this access token
$root = $app['connect_api']->getRoot();
$user = $root->getCurrentUser();
$user->getBadges()->refresh();
$app['session']->start();
$app['session']->set('connect_access_token', $data['access_token']);
$app['session']->set('connect_user', $user);
return $app->redirect('/');
})->bind('connect_callback');
$root = $api->getRoot();
// Will search for users
$users = $root->getUsers('fab');
$app['connect_api']->setAccessToken($app['session']->get('connect_access_token'));
$root = $app['connect_api']->getRoot();
$user = $root->getCurrentUser();
$user->setBiography("I'm sexy and I know it.");
$user->submitForm();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.