Download the PHP package rodrigorioo/gamersclub-api without Composer

On this page you can find all versions of the php package rodrigorioo/gamersclub-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package gamersclub-api

GamersClub API

GamersClub API es una librería en PHP que permite obtener información de partidos, torneos, players y teams de la plataforma Gamers Club.

Gamers Club al no proporcionar una API, la librería lo que hace es scrapear directamente la web, parsear la información y devolverla en un formato que se pueda trabajar.

ATENCIÓN: Actualmente GC tiene implementado CloudFare, con lo cual todas las peticiones vía cURL las rechaza y bloquea.

Para evitar el bloqueo tienen que usar la librería en NodeJS que utiliza Puppeteer: https://github.com/rodrigorioo/gamersclub-api

Instalación

La librería se instala vía composer

Uso

Para empezar a utilizarla tenemos que iniciarla con la cookie de sesión de Gamers Club (ver sección "Obtener cookie de Gamers Club")

Con esto ya podemos llamar a los métodos

Obtener cookie de Gamers Club

Una vez logueados en Gamers Club con nuestra cuenta de Steam, en Chrome realizamos lo siguiente:

  1. Apretamos F12
  2. Vamos a la pestaña "Application"
  3. En la sección "Storage" a la izquierda, apretamos en donde dice "Cookies" y luego apretamos "https://gamersclub.com.br"
  4. Ahi nos va a mostrar una tabla, a nosotros nos importa la que dice "gclubsess". Cuando la encontramos, vamos a copiar toda la cadena que está en la columna "Value" de esa fila
  5. Una vez copiado eso, lo ponemos en la librería y listo! :)

Métodos

Nombre Retorna
getMatch(tournamentId, matchId) Match()
getTeam(teamId) Team()
getTeamMatches(teamId) Array ( Match() )

Clases

Match

Player

Team

Tournament

Excepciones

Nombre Descripción
GamersClubAPI\Exceptions\Curl\Curl
GamersClubAPI\Exceptions\ParseHTML\ParseHTML
GamersClubAPI\Exceptions\ParseHTML\InvalidHTMLResponse Hereda de GamersClubAPI\Exceptions\ParseHTML\ParseHTML
GamersClubAPI\Exceptions\ParseHTML\ResponseHeaderEmpty Hereda de GamersClubAPI\Exceptions\ParseHTML\ParseHTML

Tests

En la carpeta tests hay algunos tests básicos para que vean como se utiliza la librería al mismo tiempo que tienen incluídas las capturas de las excepciones.

Para poder utilizarlas, tienen que crear un archivo init.php con el mismo formato que tiene el init_example.php en donde van a setear la cookie de GamersClub

License

MIT


All versions of gamersclub-api with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4.0
ext-curl Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rodrigorioo/gamersclub-api contains the following files

Loading the files please wait ....