jalismrs / stalactite-auth-client
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Installs: 1 321
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- php: ^7.3 || ^8.0
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.3
- guzzlehttp/psr7: ^2.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.12
- phpunit/phpunit: ^8.0 || ^9.0
README
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Installation & Usage
Requirements
PHP 7.3 and later. Should also work with PHP 8.0 but has not been tested.
Composer
To install the bindings via Composer, add the following to composer.json
:
{ "repositories": [ { "type": "vcs", "url": "https://github.com/jalismrs/stalactite-auth-client.git" } ], "require": { "jalismrs/stalactite-auth-client": "*@dev" } }
Then run composer install
Manual Installation
Download the files and include autoload.php
:
<?php require_once('/path/to/OpenAPIClient-php/vendor/autoload.php');
Getting Started
Please follow the installation procedure and then run the following:
<?php require_once(__DIR__ . '/vendor/autoload.php'); // Configure API key authorization: StalactiteToken $config = Jalismrs\Stalactite\Client\Auth\Configuration::getDefaultConfiguration()->setApiKey('X-API-TOKEN', 'YOUR_API_KEY'); // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed // $config = Jalismrs\Stalactite\Client\Auth\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-TOKEN', 'Bearer'); $apiInstance = new Jalismrs\Stalactite\Client\Auth\Api\AuthProvidersApi( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client(), $config ); $uid = 'uid_example'; // string | The uid of the Firebase auth provider to delete try { $apiInstance->deleteFirebaseAuthProvider($uid); } catch (Exception $e) { echo 'Exception when calling AuthProvidersApi->deleteFirebaseAuthProvider: ', $e->getMessage(), PHP_EOL; }
API Endpoints
All URIs are relative to https://stalactite.jalis.dev/auth
Models
- ApiError
- ClientApp
- CreateClientAppRequest
- CreateFirebaseAuthProviderRequest
- CreateGoogleAuthProviderRequest
- CreateServerAppRequest
- FirebaseAuthProvider
- GetClientAppAuthProvidersResponse
- GetClientAppsResponse
- GetServerAppsResponse
- GoogleAuthProvider
- LoginRequest
- LoginResponse
- PaginationMetas
- ResetServerAppTokenSignatureKeyRequest
- ServerApp
- UpdateClientAppRequest
- UpdateFirebaseAuthProviderRequest
- UpdateGoogleAuthProviderRequest
- UpdateServerAppRequest
Authorization
StalactiteToken
- Type: API key
- API key parameter name: X-API-TOKEN
- Location: HTTP header
Tests
To run the tests, use:
composer install vendor/bin/phpunit
Author
About this package
This PHP package is automatically generated by the OpenAPI Generator project:
- API version:
1.1.2-dev.42ed8576889f2f3eebd1d7312ea4209214278aaf
- Package version:
1.1.2-dev
- Package version:
- Build package:
org.openapitools.codegen.languages.PhpClientCodegen