我正在使用 twitter api 来更新横幅。我的 api 请求如下
$url = 'https://api.twitter.com/1.1/account/update_profile_banner.json';
$requestMethod = 'POST';
$postfields = array(
'width' => 520,
'height'=> 260,
'banner' => $encoded_data
);
$twitter = new TwitterAPIExchange($settings);
echo $twitter->buildOauth($url, $requestMethod)
->setPostfields($postfields)
->performRequest();
当我发送请求时,它显示如下错误
"{"request":"\/1.1\/account\/update_profile_banner.json","error":"Image with unknown type provided"}"
让我现在这里出了什么问题。
谢谢