简体   繁体   中英

PHP oAuth Signature Invalid - Apple DEP

I am trying to get my auth_session_token from Apple's DEP system for a MDM Server I am working on with PHP. I am so close but for some reason keep getting the following response from Apple's server:

signature_invalidUnauthorized

I have tried a slue of different things from doing research online and trying different methods people have used regarding oAuth. But there sadly hasn't been anything specific regarding Apple's DEP servers oAuth.

A lot of people recommend using an oAuth class, but none of which support Apple's system. So it looks like it all needs to be done manually.

I have taken the approach of using cURL with my PHP code, this appears to work fine, minus the fact that I can't get the signature right.

Here is how I am trying to create the signature (and again I have tried a slue of different methods so this is my most recent attempt):

function rfc3986_encode($string) {
    $result = rawurlencode($string);
    $result = str_replace('%7E', '~', $result);
    $result = str_replace('=', '%3D', $result);
    $result = str_replace('+', '%2B', $result);

    return $result;
}

$consumer = "CK_REDACTED";
$secret = "CS_REDACTED";
$secret2 = "AS_REDACTED";
$token = "AT_REDACTED";
$sign_method = "HMAC-SHA1";
$version = "1.0";
$url = "REDACTED";
$path = "REDACTED";

$timestamp = strtotime('now');
$mt = microtime();
$rand = mt_rand();
$nonce = md5($mt.$rand);

$post = array(
    'oauth_consumer_key' => rfc3986_encode($consumer),
    'oauth_token' => rfc3986_encode($token),
    'oauth_signature_method' => rfc3986_encode($sign_method),
    'oauth_timestamp' => rfc3986_encode($timestamp),
    'oauth_nonce' => rfc3986_encode($nonce),
    'oauth_version' => rfc3986_encode($version)
);

$signatureParameters = array();
foreach ($post as $parameter => $value) {
    $signatureParameters[] = rfc3986_encode($parameter) . '=' . rfc3986_encode($value);
}

$signatureParameters = implode('&', $signatureParameters);

$baseString = "GET"
             ."&".rfc3986_encode($url)
             ."&".rfc3986_encode($signatureParameters);

$key = rfc3986_encode($consumer) ."&";

$signature = base64_encode(hash_hmac('sha1', $baseString, $key));
$RFC3986signature = rfc3986_encode($signature);

So $RFC3986signature is what I end up sending in the official request for the oauth_signature parameter, but it doesn't end up getting accepted.

Does anybody know how to solve this? I have tried signing with the different secrets and / or tokens from above as obtained from Apple when adding my server in the DEP Portal, tried using multiple codes / secrets separated by the & symbol, flipped them around, and so on...but same thing...

I was able to figure this out after long time testing and trying and restarting and frustration. Turns out in my signature, before generating it, I didn't have the parameters listed in alphabetical order, and thus the signature was a mismatch.

So the key to this, when generating your signature, make absolutely sure your parameters are in alphabetical order!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM