I've been trying to find the best OAuth PHP lib for Twitter for hours. the TmhOAuth by Matt Harris seems kinda bloated (no offence) and started shooting PHP Warnings and Strict Standards notices right after I "installed" it.
All I want is to update my bg photo through the API. Just mine, so there is no need for any login and callbacks of any kind, all the keys are hard-coded.
In the end I found out about PHP's own thing: http://php.net/manual/en/book.oauth.php
Seemed cool because everything has 4 lines of code. The auth works and I can push stuff through the API, I just can't seem to send the image parameter though. This is the method: https://dev.twitter.com/docs/api/1/post/account/update_profile_background_image
I've found some examples that were using upload forms, but I have the photo already saved in a file, so how do I provide the, quote, base64-encoded image as raw multipart data?
$oauth->fetch
(
'https://api.twitter.com/1/account/update_profile_background_image.json',
array
(
'image' => '@' . $img_path . ';type=image/jpeg'
),
'POST'
);
Doesn't work, instead I get
Fatal error: Uncaught exception 'OAuthException' with message 'Invalid auth/bad request (got a 500, expected HTTP/1.1 20X or a redirect)'
