2017 © Pedro Peláez
 

library indiegogo

An unofficial Indiegogo client library

image

prahladyeri/indiegogo

An unofficial Indiegogo client library

  • Saturday, December 5, 2015
  • by prahladyeri
  • Repository
  • 1 Watchers
  • 2 Stars
  • 22 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Indiegogo - An unofficial Indiegogo client library

Installation

  • Add the following require to your composer.json require block:, (*1)

    "require": { "prahladyeri/indiegogo": "1.*" }, (*2)

  • Update composer:, (*3)

    composer update, (*4)

Usage

Use Loader::indie_get_comments() to pull comments and Loader::indie_get_contributions() to pull contribution details., (*5)

//get comments
$data = Indiegogo\Loader::indie_get_comments('e88bd0a00305bfdfb18003a75665643b');
echo $data->count . " comments fetched!\n";
foreach($data->response as $comment){
    echo $comment->id, $comment->created_at, $comment->text,"\n";
    echo "\n";
}

//get contribs
$data =  Indiegogo\Loader::indie_get_contributions('e88bd0a00305bfdfb18003a75665643b');
echo $data->count . " contributions fetched!\n";
foreach($data->response as $contrib){
    echo $contrib->id, $contrib->created_at, $contrib->amount, $contrib->by,"\n";
}

The Versions

05/12 2015

dev-master

9999999-dev https://github.com/prahladyeri/indiegogo-php

An unofficial Indiegogo client library

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

comments indiegogo contributions

05/12 2015

v0.1.1

0.1.1.0 https://github.com/prahladyeri/indiegogo-php

An unofficial Indiegogo client library

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

comments indiegogo contributions

05/12 2015

v1.0.0

1.0.0.0 https://github.com/prahladyeri/indiegogo-php

An unofficial Indiegogo client library

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

comments indiegogo contributions

05/12 2015

v0.1.0

0.1.0.0 https://github.com/prahladyeri/indiegogo-php

An unofficial Indiegogo client library

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

comments indiegogo contributions