Yahoo Gemini - 发出PUT请求

时间:2015-07-17 11:33:31

标签: php yahoo-api

我正在使用https://github.com/saurabhsahni/php-yahoo-oauth2/blob/master/YahooOAuth2.class.php

使用this example我可以创建和获取对象(创建广告系列,检索广告系列)但无法执行更新删除等操作。

我正在错过字段错误,因为它将其作为POST调用。对于更新/删除,我需要发出PUT请求。

因此,我在YahooOAuth2.class.php文件中添加了以下案例

if($method) 
{
curl_setopt($curl, CURLOPT_PUT, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata);
curl_setopt($curl, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: PUT'));
}

这是完整的功能

 public function fetch($url, $postdata = "", $auth = "", $headers = "", $method="")
    {
        $curl = curl_init($url);

        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); //Temporarily added to disable authenticity of the peer's certificate 

        if ($postdata) {
             if($method) 
             {  
             curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata);
             curl_setopt($curl, CURLOPT_PUT, true);      
             curl_setopt($curl, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: PUT'));
             }
            curl_setopt($curl, CURLOPT_POST, true);
            curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata);
        } else {
            curl_setopt($curl, CURLOPT_POST, false);
        }
        if ($auth) {
            curl_setopt($curl, CURLOPT_USERPWD, $auth);
        }
        if ($headers) {
            curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
        }
        curl_setopt($curl, CURLOPT_HEADER, false);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
        $response = curl_exec($curl);
        if (empty($response)) {
            // some kind of an error happened
            die(curl_error($curl));
            curl_close($curl); // close cURL handler
        } else {
            $info = curl_getinfo($curl);
            curl_close($curl); // close cURL handler
            if ($info['http_code'] != 200 && $info['http_code'] != 201) {
                echo "Received error: " . $info['http_code']. "\n";
                echo "Raw response:".$response."\n";
                die();
            }
        }
        return $response;
    }

当我运行该文件时,我收到以下回复

  

object(stdClass)#2(3){[“errors”] => array(1){[0] => object(stdClass)#3(4){[“errIndex”] => int(-1)[“code”] => string(28)“E10000_INTERNAL_SERVER_ERROR”[“message”] => string(12)“invalid JSON”[“description”] => string(0)“”}} [“response”] => NULL [“timestamp”] => string(18)“2015-07-20 6:21:14”}

它适用于创建检索,但不适用于更新删除

以下是制作更新广告系列的示例文件。

<?php

require "YahooOAuth2.class.php"; 

#Your Yahoo API consumer key & secret with access to Gemini data 

define("CONSUMER_KEY","sdfsadfw23r23423rsdf--");
define("CONSUMER_SECRET","234234sdfwr");
$redirect_uri="http://".$_SERVER['SERVER_NAME'] . $_SERVER['PHP_SELF'];
$gemini_api_endpoint="https://api.admanager.yahoo.com/v1/rest";
//$gemini_api_endpoint="https://sandbox-api.admanager.yahoo.com/v1/rest";

$oauth2client=new YahooOAuth2();

if (isset($_GET['code'])){
    $code=$_GET['code'];    
} 
else {
    $code=0;
}

if($code){
     $token=$oauth2client->get_access_token(CONSUMER_KEY,CONSUMER_SECRET,$redirect_uri,$code);
     $headers= array('Authorization: Bearer '.$token,'Accept: application/json','Content-Type: application/json');
     $url=$gemini_api_endpoint."/campaign/";
    $data = array("id"=>12356,"budget"=> 500);  
     $postdata = json_encode($data);
     $method = "PUT";
     $resp=$oauth2client->fetch($method, $url,$postdata,$auth="",$headers);
      $jsonResponse = json_decode( $resp);
      var_dump($jsonResponse);
}
else {
    # no valid access token available, go to authorization server 
    header("HTTP/1.1 302 Found");
    header("Location: " . $oauth2client->getAuthorizationURL(CONSUMER_KEY,$redirect_uri));
    exit;
}

?>

非常感谢任何帮助。

有没有方法可以进行更新/删除操作,还是我错过了上面的任何内容?我在Yahoo Gemini Documentation找不到更新对象的示例

2 个答案:

答案 0 :(得分:1)

最后,我这样结束了。在YahooOAuth2.class.php文件中。我刚刚在fetch函数下添加了以下代码。

if ($postdata) 
{
curl_setopt($curl, CURLOPT_POST, true);
if($method)  curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method); // For Update and Delete requests
curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata);
}

它的工作就像一个魅力。我希望它有助于某人

答案 1 :(得分:0)

按照此处http://curl.haxx.se/libcurl/c/CURLOPT_POSTFIELDS.html文档中的指示,将最后CURLOPT_POSTFIELDS隐含CURLOPT_POST的语句顺序颠倒过来。因此,您需要使用PUT覆盖该内容,如下所示:

if($method) 
{
  curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata);
  curl_setopt($curl, CURLOPT_PUT, 1);
  curl_setopt($curl, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: PUT'));
}