2017 © Pedro Peláez
 

library api

Survarium API For community

image

survarium/api

Survarium API For community

  • Thursday, March 24, 2016
  • by PhpSurvarium
  • Repository
  • 6 Watchers
  • 8 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 5 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Survarium API

It is a recommended example of API client for api.survarium.com. You can request some statistic information about Survarium with help of API., (*1)

Usage

You can install it through composer by adding next lines to your composer.json, (*2)

{
    "require" : {
        "survarium/api" : "dev-master@dev"
    }
}

If you do not use composer you should add next line to your php script, (*3)

require  DIR  . '/autoload.php'; 

where DIR is filepath to root library directory. You can use $survariumApi object to retrieve necessary data:, (*4)

$survariumApi = new \Survarium\Api\SurvariumApi('test', 'test');
$maxMatchId = $survariumApi->getMaxMatchId(); 

API server is under development now. You can use it only for test now. In order to get personal credentials for our API, please, use http://api.survarium.com/register, (*5)

The Versions

24/03 2016

dev-master

9999999-dev https://survarium.com

Survarium API For community

  Sources   Download

The Requires

  • php >=5.5
  • ext-curl *

 

The Development Requires