gpt4 book ai didi

php - imgur api 不起作用

转载 作者:行者123 更新时间:2023-12-04 06:34:57 24 4
gpt4 key购买 nike

我有一个关于 imgur 的问题api。
我想使用 imgur api 为我的网站创建一个图库,但是如何创建一个上传到 imgur 服务器的文件上传器?

这是我创建的:

<?php
include 'xmlparser.php'; // From http://www.criticaldevelopment.net/xml/doc.php
if($_SERVER['REQUEST_METHOD'] == "POST"){
$data = file_get_contents($_FILES["file"]['tmp_name']);

// $data is file data
$pvars = array('image' => base64_encode($data), 'key' => HERE_MY_API_KEY);
$timeout = 30;
$curl = curl_init();

curl_setopt($curl, CURLOPT_URL, 'http://api.imgur.com/2/upload.xml');
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $pvars);

$xml = curl_exec($curl);

$parser = new XMLParser($xml);
$parser->Parse();
echo $parser->images->item->links->original;

curl_close ($curl);
}
else
{
?>
<form action="test.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" id="file" />
<input type="submit" name="submit" value="Submit" />
</form>
<?php
}
?>

但这似乎不起作用......?
我收到此错误:

解析错误:语法错误,意外的 T_STRING,在第 7 行的 C:\data\home\www\test.php 中需要 ')'

第 7 行是这一行:
$pvars   = array('image' => base64_encode($data), 'key' => HERE_MY_API_KEY);

怎么了?
imgur api 的文档在这里:
http://api.imgur.com/examples

你们能帮帮我吗?

是的,我已经搜索了这些主题:

HTML Upload Form will only upload files found in the directory of the PHP file
Using jQuery to parse XML returned from PHP script (imgur.com API)

但这对我没有帮助...

问候

最佳答案

将 API key 放在引号中。他们把它放在所有大写和外部引号中的方式是表示一个常量值。

关于php - imgur api 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4986470/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com