abraham の twitteroauth ライブラリは update_with_media で機能しますか?
以下のコードを使用していますが、stdClass オブジェクト ( [request] => /1/statuses/update_with_media.json [error] => Error creating status. ) が返されます。
session_start();
require_once('twitteroauth/twitteroauth.php');
require_once('config.php');
if (empty($_SESSION['access_token']) || empty($_SESSION['access_token']['oauth_token']) || empty($_SESSION['access_token']['oauth_token_secret'])) {
header('Location: ./clearsessions.php');
}
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET,$_SESSION['access_token']['oauth_token'], $_SESSION['access_token']['oauth_token_secret']);
$image = './images/5298.png';
$content = $connection->post('statuses/update_with_media',
array(
'media[]' => '@{$image};type=image/jpeg;filename={$image}',
'status' => 'My current location'));
include('html.inc');
この問題を解決する方法はありますか?
編集 1: https://upload.twitter.com/1/を URL として使用しています