I am using OAuth client authorization to authenticate with the Vimeo API.
Step 1: Authorizing the Client
I am making a request to this endpoint:
Request Body:
{
"grant_type": "client_credentials",
"scope": "private create edit interact"
}
Step 2: Creating a Live Event
I am sending a request to this API:
Request Headers:
Authorization: Bearer {my_token}
Content-Type: application/json
Issue: I am getting this error response:
{
"error": "Something strange occurred. Please try again.",
"link": null,
"developer_message": "The specified resource doesn't exist.",
"error_code": 5000
}
How can I fix this issue and successfully create a live event on Vimeo?