$accessToken = PPOpenIdTokeninfo::createFromAuthorizationCode(array('code' => $code), null, null, $apiContext);
} catch (PPConnectionException $ex) {
echo "Exception: " . $ex->getMessage() . PHP_EOL;
var_dump($ex->getData());
exit(1);
}
print_result("Obtained Access Token", "Access Token", $accessToken->getAccessToken(), $accessToken);
}
User Consent Response
PayPal would redirect the user to the redirect_uri mentioned when creating the consent URL. The user would then able to retrieve the access token by getting the code, which is returned as a GET parameter.