You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as the response, but trying what should be an identical call in postman gets the correct response of it finished either successfully or fail, rather than missing parameter.
My only thought is it is probably trying a POST request when it should be a GET request.
The text was updated successfully, but these errors were encountered:
Hey,
I also had this issue. But if you look in the source code you can see that you can pass a parameter to override the HTTP method.
so doing this: $reply = $cb->media_upload([ 'command' => 'STATUS', 'media_id' => $media_id, 'httpmethod' => 'GET' ]);
Gives the status back
I pass the correct parameters for checking the status for a video upload as:
"message" : "media parameter is missing."
as the response, but trying what should be an identical call in postman gets the correct response of it finished either successfully or fail, rather than missing parameter.
My only thought is it is probably trying a POST request when it should be a GET request.
The text was updated successfully, but these errors were encountered: