【发布时间】:2015-07-17 11:33:30
【问题描述】:
我正在使用https://github.com/saurabhsahni/php-yahoo-oauth2/blob/master/YahooOAuth2.class.php
使用this example 我可以创建和获取对象(创建活动、检索活动),但不能执行更新和删除等操作。 p>
我收到了缺少字段的错误,因为它把它当作 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" }
create 和 retrieve 工作正常,但 update 和 delete 却不行。
这是制作更新广告系列的示例文件。
<?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 中找到更新对象的示例
【问题讨论】: