Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace MiniOrange\OAuth\Helper\OAuth; use MiniOrange\OAuth\Helper\OAuth\S..

Decoded Output download

<?php 
 
 
namespace MiniOrange\OAuth\Helper\OAuth; 
 
use MiniOrange\OAuth\Helper\OAuth\SAML2Utilities; 
use MiniOrange\OAuth\Helper\OAuthConstants; 
class AccessTokenRequestBody 
{ 
    private $clientID; 
    private $clientSecret; 
    private $grantType; 
    private $redirectURL; 
    private $code; 
    public function __construct($V_, $KL, $kx) 
    { 
        $this->grantType = $V_; 
        $this->redirectURL = $KL; 
        $this->code = $kx; 
    } 
    private function generateRequest() 
    { 
        $tk = ["redirect_uri" => $this->redirectURL, "grant_type" => OAuthConstants::GRANT_TYPE, "code" => $this->code]; 
        return $tk; 
    } 
    public function build() 
    { 
        $tk = $this->generateRequest(); 
        return $tk; 
    } 
} 
 ?>

Did this file decode correctly?

Original Code

<?php


namespace MiniOrange\OAuth\Helper\OAuth;

use MiniOrange\OAuth\Helper\OAuth\SAML2Utilities;
use MiniOrange\OAuth\Helper\OAuthConstants;
class AccessTokenRequestBody
{
    private $clientID;
    private $clientSecret;
    private $grantType;
    private $redirectURL;
    private $code;
    public function __construct($V_, $KL, $kx)
    {
        $this->grantType = $V_;
        $this->redirectURL = $KL;
        $this->code = $kx;
    }
    private function generateRequest()
    {
        $tk = ["\x72\x65\x64\x69\162\145\x63\x74\x5f\x75\162\151" => $this->redirectURL, "\x67\x72\x61\156\164\x5f\164\171\160\x65" => OAuthConstants::GRANT_TYPE, "\x63\x6f\x64\x65" => $this->code];
        return $tk;
    }
    public function build()
    {
        $tk = $this->generateRequest();
        return $tk;
    }
}

Function Calls

None

Variables

None

Stats

MD5 9f8003d423782baf6c8c2d2cb49511bf
Eval Count 0
Decode Time 48 ms