Thanks for the update. Still facing issue while creating tweet with video id.
I followed the below steps given in documentation.(https://dev.twitter.com/ads/creative/promoted-video-overview)
Step 1.Upload the video content using the POST media/upload (chunked) endpoint.- Completed– I got response from Finalize command without Processing_info field so I proceed to step 2.
Step 2. Create the video object and queue the media for processing using the POST /videos endpoint and the media_id from step 1 along with an optional video title and description.-Geting Error - While posting the media_id from step 1 to twitter through POST /videos endpoint getting below error.
Step 3. Once your video has finished processing, using the video_id from GET /videos you can create a Tweet using the POST accounts/:account_id/tweet endpoint.
Response from Step 2 (Post/Videos Endpoint):
_Data = {
“errors”: [
{
“code”: “NOT_FOUND”,
“message”: “Media not found”
}
],
“request”: {
“params”: {
“video_media_id”: 697659743494471681,
“account_id”: “18ce53yho7j”
}
}
}
Due to this error am not able to proceed to step 3 and create tweet. I didn’t get any videos from Get/Videos Endpoint because of this error from step 2. Please check this issue.