codepeak/oauth2-fortnox

A Fortnox provider for league/oauth2-client

1.0.3 2023-02-10 09:04 UTC

This package is auto-updated.

Last update: 2025-01-04 15:19:37 UTC


README

This is a package to integrate Fortnox authentication with the OAuth2 client library by The League of Extraordinary Packages.

Installation

composer require codepeak/oauth2-fortnox

Usage

Create instance of the provider

$provider = new \Codepeak\OAuth2\Client\Provider\Fortnox([
    'clientId' => "YOUR_CLIENT_ID",
    'clientSecret' => "YOUR_CLIENT_SECRET",
    'redirectUri' => "https://your.redirect.uri/full/url/path/here"
]);

Get authorization URL

$authorizationUrl = $provider->getAuthorizationUrl(['scope' => ['companyinformation', 'profile']]);

Get the access token

$token = $provider->getAccessToken("authorization_code", [
    'code' => $_GET['code']
]);

Refresh access token

$token = $provider->getAccessToken("refresh_token", [
    'refresh_token' => $refreshToken
]);