jrm2k6/laradit

Reddit API Wrapper for Laravel
1,677 4
Install
composer require jrm2k6/laradit
Latest Version:0.0.3
PHP:>=5.3.0
License:MIT
Last Updated:Jul 3, 2017
Links: GitHub  ·  Packagist
Maintainer: jrm2k6

##Installation

composer require jrm2k6/laradit

Configuration

Add in config/app.php:

 'providers' => [
    JD\Laradit\LaraditAuthenticationServiceProvider::class,
    JD\Laradit\LaraditResourceServiceProvider::class,
  ]

Add in your .env file:

LARADIT_CLIENT_ID=your-client-id
LARADIT_CLIENT_SECRET=yout-client-secret
LARADIT_OAUTH_REDIRECT_URI=your-callback
LARADIT_REDDIT_USERNAME=your-username
LARADIT_REDDIT_PASSWORD=your-password
LARADIT_USER_AGENT=your-user-agent

Usage

To get a authentication token for script apps:

LaraditAuth::getScriptAuthenticationManager()->getAccessToken();

You can then set the token:

 Laradit::setAuthToken($authToken);

Related Packages

php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,306 162
cyvelnet/laravel5-fractal

A simple fractal service provider and transformer generator with model attribute...

189,327 79
kavenegar/laravel

laravel 4 and 5 kavenegar integration

354,447 85