1

REST API を使用してアプリのプロセス ステータスを取得しようとしていますが、適切なデータを返すのに少し問題があります。

    $ch = curl_init( );

    curl_setopt( $ch, CURLOPT_URL, 'https://api.heroku.com');  // No clue what to put here. 
    curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt( $ch, CURLOPT_USERPWD, ":yesthisismyrealapikeyanditworks");   // trust me on this line :)
    curl_setopt( $ch, CURLOPT_HTTPHEADER, array('Accept: application/json', 'Content-Type: application/json')); //total guess
    curl_setopt( $ch, CURLOPT_CUSTOMREQUEST, 'GET');
    curl_setopt( $ch, CURLOPT_POSTFIELDS, 'https://api.heroku.com/apps/myapp/ps');  // where myapp is actually my app name

    // Getting results
    return  curl_exec($ch); 

これは有用なものを何も返しませんでした。JSON と curl は初めてなので、気楽にやってください。ありがとう。

デイブ

4

1 に答える 1

1
$ch = curl_init( );
curl_setopt( $ch, CURLOPT_URL, 'https://api.heroku.com/apps/myapp/ps');
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt( $ch, CURLOPT_USERPWD, ":yesthisismyrealapikeyanditworks");
return  curl_exec($ch); 
于 2012-09-21T14:49:59.637 に答える