1

私はカールの問題に悩まされています...以前はコードで問題はありませんでしたが、ここでは、var_dumpを実行すると、$EAACCOUNTが常に空であるように見えます...それでも私は私のコーディングの他の部分で機能するので、URLリクエストが正しいことをかなり確信しています...皆さんは私がこれをどのように解決できるか考えていますか?

    $account= "http://www.ea.com/p/fut/a/" . $machine . "/l/". $ulocal ."/s/p/ut/game/fifa13/user/accountinfo?timestamp=". $time;
    $auth   = "http://www.ea.com/p/fut/a/" . $machine . "/l/". $ulocal ."/s/p/ut/auth";
    $quest  = "http://www.ea.com/p/fut/a/" . $machine . "/l/". $ulocal ."/s/p/ut/game/fifa13/phishing/validate";


    //Cookie Data includes the two keys from above
    $cookie_string = $EASW_KEY."; ".$EASF_SESS;
    //Setup cURL HTTP request
    $ch = curl_init($account);                                                                                                                                      
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_COOKIE, $cookie_string);                                                                      
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                          
        'Content-Type: application/x-www-form-urlencoded')                                                                   
    );                                                                                                                   

    $EAACCOUNT = curl_exec($ch);
    curl_close($ch);

    //Get personaID and Platform
    $d = json_decode($EAACCOUNT, true);
$personaID = $d->userAccountInfo->personas[0]->personaId;
    $platform  = $d->userAccountInfo->personas[0]->userClubList[0]->platform;
4

0 に答える 0