Laravel/PHP Finnotech Api Client
Home Page: https://finnotech.ir
Api Doc: https://apibeta.finnotech.ir
Sandbox Dashboard Url: https://sandboxbeta.finnotech.ir
Mainnet Dashboard Url: https://devbeta.finnotech.ir
Create a OAuth athorization redirect
FinnotechClient::createOAuthRedirect(["scope" => ['refund:deposit-card:post'], "bank" => config("finnotech.bank")]);
Handle Callback
Route::get('/callback', function (Request $request) {
return FinnotechClient::callback($request->input("code"));
});