10

非常に多くのガイドやチュートリアルを読んでも何も機能しないため、非常に悪い問題に直面しています。

結果は常に同じです。{"error":"invalid_client"}

invalid_client のおかげで、コード、identityToken、および必要なものすべて ( https://appleid.apple.com/auth/tokenへの呼び出しを除く) を取得できます。

コードを取得するための私のURLは次のとおりです。

https://appleid.apple.com/auth/authorize?response_type=code&client_id=org.example.service&redirect_uri=https%3A%2F%2Fexample.org

それで、デフォルトのワークフローがあります。承認/ログインすると、自分のページにリダイレクトされます。

https://example.org/?code=a277243e2ec324fb09ba1c3333a8e6576.0.abcde.u4xiTDP2qHXoNEaxrcrIGx

(JavaScript API を使用しているときは、状態、コード、id_token などの他の情報を取得します。そこの「コード」でも既に試しました。)

メイン関数に戻ります。

これはAppleへの私の要求です。

'client_id' => 'org.example.service',  
'client_secret' => JWT-Data encoded (OPENSSL_ALGO_SHA256) see below  
'grant_type' => 'authorization_code',  
'code' => 'a277243e2ec324fb09ba1c3333a8e6576.0.abcde.u4xiTDP2qHXoNEaxrcrIGx'  

JWT ヘッダー:

{
  "alg": "ES256",
  "kid": "1ABC2345DE"
}  

JWT ペイロード:

{
  "iss": "1A234BCD56",
  "iat": 1571269964,
  "exp": 1571273564,
  "aud": "https://appleid.apple.com",
  "sub": "org.example.service"
}

応答:

{  
  "error": "invalid_client"  
}  

世界の無用なエラーメッセージ。

クライアントが無効である理由がわかりません。

https://developer.apple.com/account/resources/authkeys/listに、ダウンロードしたファイル名 AuthKey_1ABC2345DE.p8のキーがあります。(1ABC2345DE が私のキー ID であることを意味します)

次に、識別子「org.example」を持つネイティブ iOS アプリと、識別子「org.example.service」を持つサービスがあります。

IDと混合された異なるものの両方では機能しません。

何もない。無効なクライアント。

誰でも私を助けてもらえますか?私はここに何時間も座っていて、invalid_client しか取得していません

私のテストページ:

<html>
<head>
</head>
<body>
<script type="text/javascript" src="https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js"></script>
<div id="appleid-signin" data-color="black" data-border="true" data-type="sign in" data-width="330px" data-height="100px"></div>
<script type="text/javascript">
    AppleID.auth.init({
        clientId : 'org.example.service',
        scope : 'email',
        redirectURI: 'https://example.org',
        state : 'EN'
    });
</script>
</body>
</html>

そしてPHP:

<?php
// index.php

// function by https://stackoverflow.com/q/56459075/1362858
function encode($data) {
    $encoded = strtr(base64_encode($data), '+/', '-_');
    return rtrim($encoded, '=');
}

// function by https://stackoverflow.com/q/56459075/1362858
function generateJWT($kid, $iss, $sub, $key) {
    $header = [
        'alg' => 'ES256',
        'kid' => $kid
    ];
    $body = [
        'iss' => $iss,
        'iat' => time(),
        'exp' => time() + 3600,
        'aud' => 'https://appleid.apple.com',
        'sub' => $sub
    ];

    $privKey = openssl_pkey_get_private($key);
    if (!$privKey) return false;

    $payload = encode(json_encode($header)).'.'.encode(json_encode($body));
    $signature = '';
    $success = openssl_sign($payload, $signature, $privKey, OPENSSL_ALGO_SHA256);
    if (!$success) return false;

    return $payload.'.'.encode($signature);
}

$client_id = 'org.example.service';
$data = [
    'client_id' => $client_id,
    'client_secret' => generateJWT('1ABC2345DE', '1A234BCD56', $client_id, file_get_contents('AuthKey_1ABC2345DE.p8')),
    'code' => 'a277243e2ec324fb09ba1c3333a8e6576.0.abcde.u4xiTDP2qHXoNEaxrcrIGx',
    'grant_type' => 'authorization_code'
];
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'https://appleid.apple.com/auth/token');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$serverOutput = curl_exec($ch);

curl_close ($ch);

/**
 * {"error":"invalid_client"}
 */
var_dump($serverOutput);

4

2 に答える 2