graze / gigya-client
REST Client for Gigya API
Installs: 98 121
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 11
Forks: 7
Open Issues: 4
Requires
- php: ^5.5|^7.0
- guzzlehttp/guzzle: ^6.2
- illuminate/support: ^5.0|^6.0|^7.0
Requires (Dev)
- graze/standards: ^2.0
- mockery/mockery: ^0.9.4
- phpunit/phpunit: ^4.8.36 | ^5.2
- sebastian/comparator: ^1.2.4
- squizlabs/php_codesniffer: ^3
This package is auto-updated.
Last update: 2024-10-19 21:57:46 UTC
README
Client for Gigya's REST API
- Endpoint call hierarchy:
$gigya->accounts()->tfa()->getCertificate()
- List of endpoints:
accounts
,accounts->tfa
,audit
,socialize
,comments
,gameMechanics
,reports
,dataStore
,identityStorage
,saml
,saml->idp
- Populated classes with auto completion helpers for the available methods from Gigya
- Different authentication methods:
gigya
: addapi_key
andsecret
to https web requestscredentials
: usesclient_id
andclient_secret
for use with oauth2 token retrievalgigya-oauth2
: uses an automatically retrieved OAuth2 tokencustom
: use your own custom authentication (or use oauth2 with a provided token)
Install
The simplest way to install the client is with composer and running:
$ composer require graze/gigya-client
Usage
By Default the Gigya client uses gigya
auth and appends the api_key and secret onto the query string when calling gigya over https.
$gigya = new Gigya($key, $secret); $response = $gigya->accounts()->getAccountInfo(['uid' => $uid]); if ($response->getErrorCode() === ErrorCode::OK) { $account = $response->getData(); }
OAuth 2
You can also use oauth2
in server mode and retrieve information about all accounts
$gigya = new Gigya($key, $secret, $region, $user, ['auth'=>'gigya-oauth2']); $response = $gigya->accounts()->getAccountInfo(['uid' => $uid]); $account = $response->getData();
Social OAuth 2
OAuth2 can also be used to retrieve information about a single account without knowledge of the uid
.
$grant = new ManualGrant(); $gigya = new Gigya($key, $secret, $region, null, ['auth' => 'oauth2-custom']); $gigya->addHandler(OAuth2Subscriber::middleware($grant, 'oauth2-custom')); $tokenResponse = $gigya->socialize()->getToken([ 'grant_type' => 'code', 'authorization_code' => '<xxxxx>', 'redirect_uri' => '<xxxxx>', ], ['auth' => 'credentials']); $grant->setToken($tokenResponse->getData()->get('access_token')); $response = $gigya->accounts()->getAccountInfo(); $account = $response->getData();
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
$ make install
$ make test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email security@graze.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.