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
Today I cloned the project's source code in order to create a custom patch but it seems it has already been solved in master dev branch. It seems a version 2.1.1 has been in preparation for a while now... what's blocking its release? Is it safe to use master-dev in production?
Hi,
I've been scratching my head around for almost 3 hours trying to figure out how to make use for query params when Listing Media (https://docs.jwplayer.com/platform/reference/get_v2-sites-site-id-media)
Here is the code I was trying out, but that would return false…
$jwplatform_client->Media->list($property, ['page_length' => 2]);
After Xdebugging, I think I finally found that a bad syntax is causing this not to work…
In JwplatformClient::request() line 91
$path += "?" . http_build_query($query_params);
should be :
$path .= "?" . http_build_query($query_params);
PHP syntax instead of Javascript…
As of now, instead of appending the query params, the $path variable is just converted as an int 0 which breaks the request.
Do you think it could be possible to release a new version with this modified any time soon?
Thank you very much :)
Nicolas
The text was updated successfully, but these errors were encountered: