PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
app
/
Http
/
Controllers
/
Gateway
/
PaypalSdk
/
Core
<?php namespace App\Http\Controllers\Gateway\PaypalSdk\Core; use App\Http\Controllers\Gateway\PaypalSdk\PayPalHttp\HttpRequest; class RefreshTokenRequest extends HttpRequest { public function __construct(PayPalEnvironment $environment, $authorizationCode) { parent::__construct("/v1/identity/openidconnect/tokenservice", "POST"); $this->headers["Authorization"] = "Basic " . $environment->authorizationString(); $this->headers["Content-Type"] = "application/x-www-form-urlencoded"; $this->body = [ "grant_type" => "authorization_code", "code" => $authorizationCode ]; } }
[-] UserAgent.php
[edit]
[-] AccessTokenRequest.php
[edit]
[+]
..
[-] Version.php
[edit]
[-] AuthorizationInjector.php
[edit]
[-] AccessToken.php
[edit]
[-] PayPalHttpClient.php
[edit]
[-] RefreshTokenRequest.php
[edit]
[-] FPTIInstrumentationInjector.php
[edit]
[-] GzipInjector.php
[edit]
[-] ProductionEnvironment.php
[edit]
[-] SandboxEnvironment.php
[edit]
[-] PayPalEnvironment.php
[edit]