Adding support for posting a status with media#169
Adding support for posting a status with media#169rinogo wants to merge 6 commits intojmathai:masterfrom
Conversation
The search endpoint is no longer a separate URI (https://dev.twitter.com/docs/api/1.1). Everything else seems to work as expected, as long as the user authenticates. I have tested this with almost all GET endpoints, but not for any POST endpoints.
This change allows version 1.1 to work, while still allowing the default (version 1.0) to work as expected.
Will use the search version 1 API URI if applicable, but will use the normal API URI otherwise.
…to add support for media uploads.
…om) for version 1.1 (while still pointing at upload.twitter.com for version 1.0).
|
In Twitter API 1.1 they recommend to use url api.twitter.com for media upload https://dev.twitter.com/docs/api/1.1/post/statuses/update_with_media also after I switch the code to support 1.1 I get this error every time I try to upload media {"errors":[{"message":"Status creation failed: The text of your tweet is too long.","code":190}]} [code] [/code] |
|
I found the issues, just need to change EpiOAuth.php |
|
A simple merge of this caused some of the unit tests to fail. I assume it's got to do with the URL changes for 1.1. I'll have a look later but if you want pull from upstream master and you should be able to reproduce. |
@RWAP added support for posting a status with attached media. However, his changes were based off of the 1.0 API. This pull request combines @RWAP's changes with @aaronwaldon's proposed 1.1 API pull request.