TwitterのAPIを使ったPHPプログラムで、アカウントのテーマカラーを変更させようと、

$request = $connection->post("http://api.twitter.com/1.1/account/update_profile.json", array("profile_link_color" => "606090"));

と書いたのですが、

object(stdClass)#3 (1) { ["errors"]=> array(1) { [0]=> object(stdClass)#8 (2) { ["message"]=> string(31) "Sorry, that page does not exist" ["code"]=> int(34) } } }

とエラーが返されます。

書き方が間違っているのはわかるんですが、PHPもTwitterAPIもほとんど初めてで...具体的にどう書けばいいのかわかりません.

ご指導よろしくお願いします.