PHP code example of exinone / laravel-mixin-sdk

1. Go to this page and download the library: Download exinone/laravel-mixin-sdk library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

exinone / laravel-mixin-sdk example snippets


    'providers' => [
        ...
        ExinOne\MixinSDK\MixinSDKServiceProvider::class,
    ],
    'aliases' => [
        ...
        'MixinSDK' => ExinOne\MixinSDK\Facades\MixinSDK::class,
    ]
    

        // account information
        'keys'    => [
        // default use is config
            'default' => [
                'mixin_id'      => env('MIXIN_SDK_MIXIN_ID'),
                'client_id'     => env('MIXIN_SDK_CLIENT_ID'),
                'client_secret' => env('MIXIN_SDK_CLIENT_SECRET'),
                'pin'           => env('MIXIN_SDK_PIN'),
                'pin_token'     => env('MIXIN_SDK_PIN_TOKEN'),
                'session_id'    => env('MIXIN_SDK_SESSION_ID'),
                'private_key'   => str_replace("\\n", "\n", env('MIXIN_SDK_PRIVATE_KEY')),  //import your private_key
                'safe_key'      => env('MIXIN_SDK_SAFE_KEY'),
            ],
            'myConfig-A'=>[
                ...
            ]
        ],
        

        // then you can
        MixinSDK::user()->readProfile();
        // or
        MixinSDK::use('myConfig-A')->user()->readProfile();
        

        // use setConfig method to save config
        MixinSDK::setConfig('myConfig-A',$config0);
        MixinSDK::setConfig('myConfig-B',$config1);
        // then you can
        MixinSDK::use('myConfig-A')->user()->readProfile();

        //-------
        // Or more simple way, using the 'use' method , chained with other methods
        MixinSDK::use('myConfig-A',$config)->user()->readProfile();
        // then you can
        MixinSDK::use('myConfig-A')->user()->readProfile();
        


try {
    // If the transfer fails here, an error will be thrown.
    MixinSDK::wallet()->transfer($asset_id, $opponent_id, $pin, $amount, $memo);
} catch (MixinNetworkRequestException $e) {
    // Here errCode and errMessage are the same as MixinNetwork, refer to the following link.
    $errCode    = $e->getCode();
    $errMessage = $e->getMessage();
    ...
} catch (\Throwable $e) {
    ...
}

    
    $iterator = [time()];
    // if use it by MixinSDK::pin()->updatePin($oldPin,$pin),
    // $iterator need have two element (count($iterator) == 2)

    MixinSDK::wallet()->setIterator($iterator)->transfer($asset_id, $opponent_id, $pin, $amount, $memo);
    // By default, microtime(true) * 100000 is used as iterator
    

    
    $mixinSdk->wallet()->setRaw(true)->transfer($asset_id, $opponent_id, $pin, $amount, $memo);
    // Return MixinNetwork raw Response content
    
bash
    $ php artisan vendor:publish --provider="ExinOne\MixinSDK\MixinSDKServiceProvider"