imgur图像没有显示在帐户中

时间:2014-07-03 05:16:41

标签: php imgur

我使用PHP创建一个图像库应用程序。对于托管我使用imgur,它在我的网站上正常工作。我可以上传并查看我的应用程序中的图像,但问题是当我登录我的imgur帐户时,我无法看到任何图像。

HTML代码

<form action="upload.php" enctype="multipart/form-data" method="POST">
    Choose Image : <input name="img" size="35" type="file"/><br/>
     <input type="submit" name="submit" value="Upload"/>
</form>

PHP代码

<?
$img = $_FILES['img'];
if (isset($_POST['submit'])) {
    if ($img['name'] == '') {
        echo "<h2>An Image Please.</h2>";
    } else {
        $filename  = $img['tmp_name'];
        $client_id = "client_id****";
        $handle    = fopen($filename, "r");
        $data      = fread($handle, filesize($filename));
        $pvars     = array(
            'image' => base64_encode($data)
        );
        $timeout   = 30;
        $curl      = curl_init();
        curl_setopt($curl, CURLOPT_URL, 'https://api.imgur.com/3/image.json');
        curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
        curl_setopt($curl, CURLOPT_HTTPHEADER, array(
            'Authorization: Client-ID ' . $client_id
        ));
        curl_setopt($curl, CURLOPT_POST, 1);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($curl, CURLOPT_POSTFIELDS, $pvars);
        $out = curl_exec($curl);
        curl_close($curl);
        $pms = json_decode($out, true);
        $url = $pms['data']['link'];
        if ($url != "") {
            echo "<h2>Uploaded Without Any Problem</h2>";
            echo "<img src='$url'/>";
        } else {
            echo "<h2>There's a Problem</h2>";
            echo $pms['data']['error'];
        }
    }
}
?>

1 个答案:

答案 0 :(得分:0)

要上传到特定的imgur帐户,您需要按照here概述的OAuth身份验证和授权流程进行操作。否则,图像将被上传而不附加到用户。