Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hydrogen-dev/nucleus-sdk-php
https://github.com/hydrogen-dev/nucleus-sdk-php
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/hydrogen-dev/nucleus-sdk-php
- Owner: hydrogen-dev
- Created: 2021-02-17T04:53:50.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-13T13:32:26.000Z (almost 3 years ago)
- Last Synced: 2024-04-17T06:53:49.256Z (8 months ago)
- Language: PHP
- Size: 1.16 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hydrogen Nucleus API
Hydrogen Nucleus API
- API version: 1.9.5
- Build date: 01-07-2021For more information, please visit [https://www.hydrogenplatform.com/apis](https://www.hydrogenplatform.com/apis)
## Documentation
https://www.hydrogenplatform.com/docs/nucleus/v1
## Requirements
1. PHP 5.5 and later
## Installation
### Install via Composer
Please run `composer require hydrogenplatform/hydrogen-nucleus-api`
## Getting Started
Please first follow the [installation](#installation) instructions. Then make sure you use the proper base URL:
### Base URL
Create an authentication object(**AuthApiClient**) and pass the **getDefaultConfiguration** method
with environment parameter.
**Sandbox URL**\com\hydrogen\nucleus\AuthApiClient::
getDefaultConfiguration(\com\hydrogen\nucleus\Environment::SANDBOX)
**Production URL**\com\hydrogen\nucleus\AuthApiClient::
getDefaultConfiguration(\com\hydrogen\nucleus\Environment::PRODUCTION)### Sample Code
Now you are ready to execute the following PHP code:```php
createClientCredential("MYCLIENTID",
"MYCLIENTSECRET");
// 2) Generate Token for password credentials
$config =
\com\hydrogen\nucleus\AuthApiClient::
getDefaultConfiguration(\com\hydrogen\nucleus\Environment::PRODUCTION)->createPasswordCredential("MYCLIENTID","MYCLIENTSECRET"
,"MYUSERNAME", "MYPASSWORD");
// 3) Generate Token for client_token
$config = \com\hydrogen\nucleus\AuthApiClient::getDefaultConfiguration(\com\hydrogen\nucleus\Environment::PRODUCTION)
->createClientTokenCredential("MYCLIENTID","MYCLIENTSECRET", "CLIENT_TOKEN");
} catch (\com\hydrogen\nucleus\ApiException $e) {
print_r($e);
}
$apiInstance = new com\hydrogen\nucleus\Api\AccountApi(
// 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
);
$alloc_request = new \com\hydrogen\nucleus\Model\AccountAllocationMapping(); // \com\hydrogen\nucleus\Model\AccountAllocationMapping | allocRequesttry {
$result = $apiInstance->createAccountAllocationMappingUsingPost($alloc_request);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AccountApi->createAccountAllocationMappingUsingPost: ', $e->getMessage(), PHP_EOL;
}?>
```## Author
The Hydrogen Technology Corporationhttps://www.hydrogenplatform.com
*Generated using [Swagger Codegen](https://github.com/swagger-api/swagger-codegen)*