Error when updating video on brightcove in objective c

509 Views Asked by At

I am trying to update my video on bright cove, but when I send a request it returns an error in return. This is my JSON request which I send

{"method":"update_video","params":{"video":{"id":"myID","economics":"AD_SUPPORTED"},"token":"myToken.."}}

and response is:

{"name":"MissingJSONError","message":"Could not find JSON-RPC.","code":211}, "result": null, "id": null}
1

There are 1 best solutions below

0
On

Here you can find the Brightcove API Error details. For this error, the reason is listed as:

211 MissingJSONError Could not find JSON-RPC. We got a null string for either the json parameter (for a non-multipart post) or the first part of a multipart post.

It looks like the result is telling you that the ID is null. If you are passing an ID, check that it exists and is the ID type Brightcove is expecting (ie, the brightcove ID vs. the reference_id).

You can check all the API params here: Brightcove Video Cloud / Media API Reference