3

Webサイトでgitkitをセットアップしようとしていますが、この1行のコードを通過できません。私が何をしても、file_get_contents空に戻り続けます。

私はすでにphp.iniを設定しました:always_populate_raw_post_data = On

私の環境はPHP 5.3.3、、Apache 2.2.6localhostです。

ここにいくつかのコードがあります。

index.phpで、Google APIを呼び出し、Gmailアカウント、つまりフェデレーションログインでログインしようとします。

(これはGoogle APIコンソールからのものです)

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/googleapis/0.0.4/googleapis.min.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/jsapi"></script>
<script type="text/javascript">
  google.load("identitytoolkit", "1", {packages: ["ac"], language:"en"});
</script>
<script type="text/javascript">
  $(function() {
    window.google.identitytoolkit.setConfig({
        developerKey: "HERE_GOES_MY_DEVELOPER_KEY",
        companyName: "Valentinos Pizzaria",
        callbackUrl: "http://localhost/valentinos/callback.php",
        realm: "",
        userStatusUrl: "http://localhost/valentinos/userstatus.php",
        loginUrl: "http://localhost/valentinos/login.php",
        signupUrl: "http://localhost/valentinos/register.php",
        homeUrl: "http://localhost/valentinos/index.php",
        logoutUrl: "http://localhost/valentinos/logout.php",
        idps: ["Gmail", "Yahoo"],
        tryFederatedFirst: true,
        useCachedUserStatus: false,
        useContextParam: true
    });
    $("#navbar").accountChooser();
  });
</script>

IDP応答を受け取り、ログインして、アクセス許可を求められます。Googleが提供するコードサンプル(以下)を使用したコールバックページに戻ると、この1行のコードが正しく返されていないようです。

私は愚かなことをしているのですか?

どんな助けでもありがたいです。

これまでのcallback.php全体は次のとおりです(現時点ではHTMLはまったくありません)。

  session_start();

  $url = EasyRpService::getCurrentUrl();
  #$postData = @file_get_contents('php://input');
  $postData = file_get_contents('php://input');
  $result = EasyRpService::verify($url, $postData);
  // Turn on for debugging.
  // var_dump($result);

class EasyRpService {
  // Replace $YOUR_DEVELOPER_KEY
  private static $SERVER_URL = 'https://www.googleapis.com/rpc?key=HERE_GOES_MY_DEVELOPER_KEY';

  public static function getCurrentUrl() {
    $url = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https://' : 'http://';
    $url .= $_SERVER['SERVER_NAME'];
    if ($_SERVER['SERVER_PORT'] != '80') {
      $url .= ':'. $_SERVER['SERVER_PORT'];
    }
    $url .= $_SERVER['REQUEST_URI'];
    return $url;
  }

  private static function post($postData) {
    $ch = curl_init();
    curl_setopt_array($ch, array(
        CURLOPT_URL => EasyRpService::$SERVER_URL,
        CURLOPT_RETURNTRANSFER => 1,
        CURLOPT_HTTPHEADER => array('Content-Type: application/json'),
        CURLOPT_POSTFIELDS => json_encode($postData)));
    $response = curl_exec($ch);
    $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
    if ($http_code == '200' && !empty($response)) {
      return json_decode($response, true);
    }
    return NULL;
  }

  public static function verify($continueUri, $response) {
    $request = array();
    $request['method'] = 'identitytoolkit.relyingparty.verifyAssertion';
    $request['apiVersion'] = 'v1';
    $request['params'] = array();
    $request['params']['requestUri'] = $continueUri;
    $request['params']['postBody'] = $response;

    $result = EasyRpService::post($request);
    if (!empty($result['result'])) {
      return $result['result'];
    }
    return NULL;
  }

} # End Class EasyRpService

誰かが尋ねる前に、私はHERE_GOES_MY_DEVELOPER_KEY自分の開発者キーに置き換えます...

繰り返しになりますが、どんな助けでも大歓迎です。Cya。

4

2 に答える 2

6

$ _POSTを使用してみましたか?enctype = "multipart/form-data"ではphp://input 機能しません。multipart / form-dataとして応答を受け取っている可能性があります。この場合、$ _POST[0]が機能するはずです。

于 2012-08-13T16:34:23.590 に答える
2

HTTPPOSTデータは通常$_POSTに入力され、php://inputには通常PUTデータが含まれます。

于 2012-08-13T16:05:03.700 に答える