A new version of tuneefy built for PHP 8 and Node 18+, from the ground up, using Symfony and a few helper libraries.
This project uses composer 2. Just run :
composer install
Tuneefy needs a variety of tables to work properly; you can populate your database with the following :
bin/console doctrine:migrations:migrate
To build the assets and the API documentation, I use yarn and some modules.
yarn install
yarn run build
yarn run api-documentation
The tests are under the ./tests
folder and I use Codeception to run them.
Just run :
vendor/bin/codecept run --steps
Beforehand, do not forget to launch a development web server so that the functional tests have an endpoint to test:
symfony server:start --port 9999
There should be 40 tests containing 697 assertions.
Sometimes a platform fails to respond correctly due to network latencies or such. Re-run the tests in this case, it should pass fine the second time.
The API endpoints require an OAuth access token. The token is necessary to authenticate all requests to the API.
The tuneefy API currently supports the OAuth 2 draft specification. All OAuth2 requests MUST use the SSL endpoint available at https://data.tuneefy.com/.
OAuth 2.0 is a simple and secure authentication mechanism. It allows applications to acquire an access token for tuneefy via a POST request to a token endpoint. Authentication with OAuth can be accomplished in the following steps:
- Register for an API key by sending a mail to [email protected]
- Exchange your customer id and secret for an access token
- Make requests by passing the token in the Authorization header
- When your token expires, you can get a new one
You can get an API key and associated secret by sending an email to [email protected].
Limits are placed on the number of API requests you may make using your API key. Rate limits may vary by service, but the defaults are 100 requests per hour.
The full documentation is available at https://data.tuneefy.com. An API blueprint is also available here — use your preferred renderer to build it. We use Aglio.
If you want to participate/contribute, feel free to create pull requests or issues so we can make Tuneefy better and more efficient !