sizeid / oauth2
Package for communication with SizeID Business API.
Installs: 18 516
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Open Issues: 0
Requires
- php: >=5.6
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- latte/latte: ^2.4
- mockery/mockery: ^1.3
- nette/tester: ^1.7
- tracy/tracy: ^2.4
This package is not auto-updated.
Last update: 2024-11-12 15:24:35 UTC
README
Package for simple communication with SizeID Business API. For more information see sizeid/oauth2 documentation and SizeID Business API documentation.
Installation into existing project
- Get the code
composer require sizeid/oauth2
-
Get
clientId
andclientSecret
from your SizeID for Business account. Free tariff available. -
Initialize communication objects
- for client endpoints calls see examples/clientApi.php
- for user endpoints calls see examples/userApi.php
- for login with sizeid using popup see examples/popupLogin.php
Examples
- Get the code
composer create-project sizeid/oauth2
-
Get
clientId
andclientSecret
from your SizeID for Business account. Free tariff available. -
Navigate to
examples
directory, copyconfig.example.php
toconfig.php
, change constantsCLIENT_ID
andCLIENT_SECRET
, run example file with webserver.