Giter VIP home page Giter VIP logo

laravel-api-sdk-sample's Introduction

koperasi-api

repository ini adalah private package SDK API untuk semua aplikasi koperasi.io

Install

Install via composer

Before install make sure you add repository config for change source package from private repository.

"repositories": [
{
    "type": "vcs",
        "url":  "[email protected]:koperasi-io/koperasi-api.git"
    }
],

Install package

composer require "koperasi-io/koperasi-api: 1.*"

Add service provider to config/app.php

KoperasiIo\KoperasiApi\ServiceProvider::class,

Add Facade

KoperasiApi => KoperasiIo\KoperasiApi\Facade::class,

Configuration

publish config

php artisan publish:vendor --package='KoperasiIo\KoperasiApi\ServiceProvider'

config/koperasi-api.php

<?php

return [

    'user' => [
        'url' => env('KOPERASI_API_USER_URL', 'http://user.koperasi.localhost/api/'),
        'token' => env('KOPERASI_API_USER_TOKEN'),
    ],

    'accounting' => [
        'url' => env('KOPERASI_API_ACCOUNTING_URL', 'http://accounting.koperasi.localhost/api/'),
        'token' => env('KOPERASI_API_ACCOUNTING_TOKEN'),
    ],

    'inventory' => [
        'url' => env('KOPERASI_API_INVENTORY_URL', 'http://inventory.koperasi.localhost/api/'),
        'token' => env('KOPERASI_API_INVENTORY_TOKEN'),
    ],

    'finance' => [
        'url' => env('KOPERASI_API_FINANCE_URL', 'http://finance.koperasi.localhost/api/'),
        'token' => env('KOPERASI_API_FINANCE_TOKEN'),
    ],

];

Note: Change url of API endpoint if necesary

Generate Personal Access Client

go to each koperasi.io application manage apis (/settings/apis/client) and create personal access token then put personal access token to config variable

Usage Example

// get users data from user app
$users = KoperasiApi::user()->getUsers();

// get members data from user app
$members = KoperasiApi::user()->getMembers();

Todo

  1. setup exception
  2. create testing
  3. add more endpoints

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.