0

私は開発中のプロジェクトでコンシューマーとしてopenID認証を実装しようとしてきましたが、まだ例を思いどおりに機能させることができていません。

サンプルのコンシューマーはyahooopenid認証で完全に機能しますが、try_auth.phpページで失敗し、googleopenIDを使用しようとすると501HTTPエラーが発生します。

try_auth.php(実際のopenIDプロバイダーへの呼び出しを処理するページ)のコードは次のとおりです。

<?php
error_reporting(E_ALL);
ini_set('display_errors','On');
require_once "common.php";
session_start();

function getOpenIDURL() {
    // Render a default page if we got a submission without an openid
    // value.
    if (empty($_GET['openid_identifier'])) {
        $error = "Expected an OpenID URL.";
        include 'index.php';
        exit(0);
    }

    return $_GET['openid_identifier'];
}

function run() {
    $openid = getOpenIDURL();
    $consumer = getConsumer();

    // Begin the OpenID authentication process.
    $auth_request = $consumer->begin($openid);

    // No auth request means we can't begin OpenID.
    if (!$auth_request) {
        displayError("Authentication error; not a valid OpenID.");
    }

    $sreg_request = Auth_OpenID_SRegRequest::build(
                                     // Required
                                     array('nickname'),
                                     // Optional
                                     array('fullname', 'email'));

    if ($sreg_request) {
        $auth_request->addExtension($sreg_request);
    }

    $policy_uris = null;
    if (isset($_GET['policies'])) {
        $policy_uris = $_GET['policies'];
    }

    $pape_request = new Auth_OpenID_PAPE_Request($policy_uris);
    if ($pape_request) {
        $auth_request->addExtension($pape_request);
    }

    // Redirect the user to the OpenID server for authentication.
    // Store the token for this authentication so we can verify the
    // response.

    // For OpenID 1, send a redirect.  For OpenID 2, use a Javascript
    // form to send a POST request to the server.
    if ($auth_request->shouldSendRedirect()) {
        $redirect_url = $auth_request->redirectURL(getTrustRoot(),
                                                   getReturnTo());

        // If the redirect URL can't be built, display an error
        // message.
        if (Auth_OpenID::isFailure($redirect_url)) {
            displayError("Could not redirect to server: " . $redirect_url->message);
        } else {
            // Send redirect.
            header("Location: ".$redirect_url);
        }
    } else {
        // Generate form markup and render it.
        $form_id = 'openid_message';
        $form_html = $auth_request->htmlMarkup(getTrustRoot(), getReturnTo(),
                                               false, array('id' => $form_id));

        // Display an error if the form markup couldn't be generated;
        // otherwise, render the HTML.
        if (Auth_OpenID::isFailure($form_html)) {
            displayError("Could not redirect to server: " . $form_html->message);
        } else {
            print $form_html;
        }
    }
}

run();

?>

私が気付いたもう1つの考えは、Windows開発ボックス(Apache 2.2.6スタンドアロン、XAMPP、PHP 5.3.8ではない)ではすべてがスムーズに実行され、yahooとGoogleの両方が問題なくopenID認証を実行することです。

誰かが何が間違っているのか考えていますか?

前もって感謝します。

4

1 に答える 1

0

試行錯誤の末、GoogleのopenID URLがクエリ文字列(フォームメソッド「get」の場合)またはpostdata(フォームメソッド「post」の場合)としてページに渡されるため、501エラーが発生するという結論に達しました。特に、私が使用していたURLは

https://www.google.com/accounts/o8/id

最後の部分(「id」)が501エラーをトリガーしています。使用する場合

https://www.google.com/accounts/o8/id/

エラーはトリガーされません。2つは同等のURLなので、2つ目を使用します。なぜこれが起こったのか、私はまだ興味があります。

于 2012-04-08T21:58:01.643 に答える