Open ramikalai opened 4 years ago
@ramikalai
Sorry, I forgot to call appendUpload() method recursively. I think the video file is broken because the entire chunk hasn't posted. I will fix it and pull a request.
@ramikalai I have already fixed it and Requested pull my commit.
@mattdonnelly I would appreciate it if you check and merge my request.
I just checked out and merged the PR. Hopefully the issue is addressed.
@Kyome22 Thank you for pushing a patch so quickly! I have just tried it out and unfortunately, I still get the same error... It's really strange as I expected your patch to fix the issue.
Have you managed to postTweet media uploaded through the postMultipartMedia endpoint?
Any thoughts on what else it could be?
I figured out the issue - sending media as a tweet doesn't work well with the media_category optional...
I unset it, and everything worked! I've opened a PR #316 - would appreciate if you could merge this @meteochu
Thanks for the help @Kyome22 !
@ramikalai Does the video file you use for testing comply with the "Media best practices"? https://developer.twitter.com/en/docs/media/upload-media/uploading-media/media-best-practices
I think that you should give MediaCategory as much as possible.
And I think attachments should be inspected before posting in the first place and users should be warned if they don't comply with media-best-practices.
@ramikalai Did you get the sync response instead of async when calling FINALIZE? My code certainly seems to be lacking the process for the case of the sync operation.
https://developer.twitter.com/en/docs/media/upload-media/api-reference/post-media-upload-finalize https://developer.twitter.com/en/docs/media/upload-media/api-reference/get-media-upload-status
@ramikalai
message: "HTTP Status 400: Bad Request, Response: {\"errors\":[{\"code\":324,\"message\":\"Duration too short, minimum:500, actual:67
Isn't the problem caused by the video file duration being too short?
Hey @Kyome22, apologies have been busy at work..
The video file I was using does comply with the media requirements.. I tried using a non-compliant video file (large resolution) and the error explicitly stated that the resolution was too large.
I have also tried multiple files with varying durations, however I always got the same actual duration in the error response: 67
Finally, I read somewhere in the Twitter API docs that the media_category is used to validate media used in Ads... This is why I removed that parameter which ended up working for me.
Does #317 fix this issue? Or does media upload still fail?
I want to post a tweet that only contains an mp4 video.
Here's what I'm doing:
swifter!.postMultipartMedia
works fine and returns:The call to
swifter!.postTweet
fails though with this error:I'm familiar with the Twitter API generally, however I haven't encountered an error like this before... Was hoping to get some info on this