2017 © Pedro Peláez
 

library steein-sdk

Steein SDK

image

steein/steein-sdk

Steein SDK

  • Wednesday, March 21, 2018
  • by Steein
  • Repository
  • 1 Watchers
  • 2 Stars
  • 20 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 7 Versions
  • 0 % Grown

The README.md

Steein SDK for PHP

Welcome to Steein PHP SDK. This repository contains Steein's PHP SDK and samples for REST API., (*1)

Installation

The preferred method is via composer. Follow the installation instructions if you do not already have composer installed. Once composer is installed, execute the following command in your project root to install this library:, (*2)

composer require steein/steein-sdk

Finally, be sure to include the autoloader:, (*3)

require_once '/path/to/your-project/vendor/autoload.php';

SDK Documentation

Usage

Simple GET example of a user's account., (*4)

Version 1

sdk-config.ini, (*5)

[Account]
acct1.ClientId = {id}
acct1.ClientSecret = {secret_key}
acct1.VersionApi = v2.0

index.php, (*6)

define('STEEIN_CONFIG_PATH', __DIR__);
$steein = new Steein();

Version 2

$steein = new Steein([
    'client_id'             =>  '{id}',
    'client_secret'         => '{secret_key}',
    'default_api_version'   =>  'v2.0'
]);
$steein->setDefaultAccessToken('{access_token}');

$get = $steein->get('/users/show'); //$steein->get('/users/show',['id' => 1]);
$user = $get->getUserModel(); //$get->getDecodedBody()

echo 'ID: '. $user->getId(); //or $user->all();

Complete documentation, installation instructions, and examples are available here., (*7)

License

Please see the license file for more information., (*8)

The Versions

21/03 2018

dev-master

9999999-dev https://github.com/steein/steein-sdk-php

Steein SDK

  Sources   Download

MIT Steein Platform

The Requires

 

The Development Requires

library sdk steein steein-api

08/08 2017

2.0.7

2.0.7.0 https://github.com/steein/steein-sdk-php

Steein SDK

  Sources   Download

Steein Platform

The Requires

 

The Development Requires

library sdk steein steein-api

26/07 2017

2.0.6

2.0.6.0 https://github.com/steein/steein-sdk-php

Steein SDK

  Sources   Download

Steein Platform

The Requires

 

The Development Requires

library sdk steein steein-api

21/07 2017

2.0.5

2.0.5.0 https://github.com/steein/steein-sdk-php

Steein SDK

  Sources   Download

Steein Platform

The Requires

 

The Development Requires

library sdk steein steein-api

08/07 2017

1.1.0

1.1.0.0 https://github.com/steein/steein-sdk-php

Steein SDK

  Sources   Download

Steein Platform

The Requires

 

The Development Requires

library sdk steein steein-api

10/06 2017

1.0.9

1.0.9.0 https://github.com/steein/steein-sdk-php

Steein SDK

  Sources   Download

Steein Platform

The Requires

 

The Development Requires

library sdk steein steein-api

28/04 2017

1.0.8

1.0.8.0 https://github.com/steein/steein-sdk-php

Steein SDK

  Sources   Download

Steein Platform

The Requires

 

The Development Requires

library sdk steein steein-api