Skip to content

Latest commit

 

History

History
86 lines (57 loc) · 2.2 KB

README.md

File metadata and controls

86 lines (57 loc) · 2.2 KB

FatSecret API for Laravel

The FatSecret API for Laravel gives you access to the FatSecret API.

FatSecret provides you with access to comprehensive nutrition data for many thousands of foods, not to mention a range exercises and great weight management tools for your applications.

How to Install

  1. Install the braunson/fatsecret package

    $ composer require "braunson/fatsecret:dev-master"
  2. Update app/config/app.php to activate FatSecretAPI package

    # Add `FatSecretServiceProvider` to the `providers` array
    'providers' => array(
    	...
    	'Braunson\FatSecret\FatSecretServiceProvider',
    )
    
    'aliases' => array(
    	...
    )

Configuration

  1. Generate a template FatSecret configuration file

    $ php artisan config:publish braunson/fatsecret
  2. Update app/config/packages/braunson/fatsecret/config.php with your FatSecret API key and API secret:

    return array(
    	'api_key'    => 'YOUR-API-KEY-HERE',
    	'api_secret' => 'YOUR-API-SECRET-HERE',
    );

Usage

The FatSecretAPI is available as FatSecret, for example:

FatSecret::ProfileCreate($userID, &$token, &$secret);

For more information on using the FatSecret API check out the documentation

Reporting Bugs or Feature Requests

Please report any bugs or feature requests on the github issues page for this project here:

https://github.com/braunson/fatsecret/issues

Contributing

License

The FatSecret Laravel API is free software released under the MIT License. See LICENSE for details. This is not an official release and is released separately from FatSecret.