When I post
$url = "https://vspc.singlepointglobal.com:1280/api/v3/token";
$pubKey = "<RSAKeyValue>SOMEPUBKEY</RSKeyValue>";
$fields = "grant_type=public_key&public_key=".base64_encode($pubKey);
the response I get back has a null access token.
stdClass Object
(
[access_token] =>
[token_type] => intermediate
[refresh_token] =>
[mfa_token] =>
[encrypted_code] => someenccode
)
what are some causes for a blank access token?
$url = "https://vspc.singlepointglobal.com:1280/api/v3/token";
$pubKey = "<RSAKeyValue>SOMEPUBKEY</RSKeyValue>";
$fields = "grant_type=public_key&public_key=".base64_encode($pubKey);
the response I get back has a null access token.
stdClass Object
(
[access_token] =>
[token_type] => intermediate
[refresh_token] =>
[mfa_token] =>
[encrypted_code] => someenccode
)
what are some causes for a blank access token?
Statistics: Posted by bmueller — Jun 09, 2025 8:08 pm







