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
{{ message }}
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.
resulting in errors if multiple IDs are passed (such as '123,45,67') as the response format is different if more than a single asset ID is passed.
The change here could either be a completely new method that takes an array of IDs and internally concatenates them with a comma, or refactor the current method to work with both single IDs or comma-concatenated list of IDs.
The text was updated successfully, but these errors were encountered:
jhedstrom
added a commit
to jhedstrom/php-webdam-client
that referenced
this issue
Sep 23, 2020
The DAM API supports passing in multiple asset IDs to the metadata endpoint. (example
https://apiv2.webdamdb.com/assets/2342322,5342344/metadatas/xmp
)The current code assumes only a single asset ID though:
resulting in errors if multiple IDs are passed (such as '123,45,67') as the response format is different if more than a single asset ID is passed.
The change here could either be a completely new method that takes an array of IDs and internally concatenates them with a comma, or refactor the current method to work with both single IDs or comma-concatenated list of IDs.
The text was updated successfully, but these errors were encountered: