draugiem/draugiem-php-sdk

There is no license information available for the latest version (v1.3.7) of this package.

Draugiem.lv API PHP library

v1.3.7 2018-01-25 11:05 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:41:29 UTC


README

Draugiem.lv API library for PHP

Latest Stable Version Latest Unstable Version

To make application development faster and easier, we've created a PHP library that performs API calls and automatically converts the requested data to the PHP data structures. PHP library can be used both for integrated applications and draugiem.lv Passport applications.

The library requires PHP5 environment and uses PHP session mechanism for storing user data during sessions. To be able to perform API calls, PHP configuration you have to enable access to HTTP URLs for file_get_contents function (enable allow_url_fopen setting in PHP configuration).

In order to use PHP library, you have to include file DraugiemApi.php in your application.

Usage

Check examples for more on how to use the API library.

require 'DraugiemApi.php';

$draugiem = new DraugiemApi( 'YOUR_APP_ID', 'YOUR_APP_KEY' );

session_start();
$draugiem->cookieFix(); // Iframe cookie workaround for IE and Safari

$session = $draugiem->getSession();
if ($session) {
	$user = $draugiem->getUserData(); //Get user info
}

Usage with composer

  1. Add this package to your composer.json

    "draugiem/draugiem-php-sdk": "1.3.*"
  2. Update composer.json packages

    composer update
    
  3. Use library as shown in examples

    $draugiem = new DraugiemApi( 'YOUR_APP_ID', 'YOUR_APP_KEY' );