Skip to content

Instantly share code, notes, and snippets.

@mtvbrianking
mtvbrianking / artisan-route-list.php
Created April 7, 2019 13:32
Laravel PHP Artisan route list
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Route;
class HomeController extends Controller
{
/**
* Constructor.
@mtvbrianking
mtvbrianking / api-request-token.md
Last active September 21, 2019 14:48
Sample API request tokens requests
curl -X POST \
  http://localhost:8000/api/v1/oauth/token \
  -H 'Accept: application/json' \
  -d 'grant_type=authorization_code' \
  -d 'client_id=b8e7163a-83a0-4386-b0bc-697a96edef14' \
  -d 'client_secret=bNQbpQnMPXayTn8XFPRQDWvIyyclN5pKnccVVUNx' \
  -d 'redirect_uri=http://localhost:8000/test/callback' \
  -d 'code=def502006626c316151b4f074308...'