We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently when serializing an RPDE feed with an empty page the items key is blank.
items
Example code:
$feedPage = RpdeBody::createFromModifiedId( 'http://example.com', 1585574114067820, 'c8de7e8b-f035-4a1f-a588-4c788176a0e7', [] ); $serialized = RpdeBody::serialize($feedPage);
Expected response:
{ "next": "\/api\/open-active\/individual-facility-uses?afterTimestamp=1585574114067820&afterId=c8de7e8b-f035-4a1f-a588-4c788176a0e7", "license": "https:\/\/creativecommons.org\/licenses\/by\/4.0\/", "items": [] }
Actual response:
{ "next": "\/api\/open-active\/individual-facility-uses?afterTimestamp=1585574114067820&afterId=c8de7e8b-f035-4a1f-a588-4c788176a0e7", "license": "https:\/\/creativecommons.org\/licenses\/by\/4.0\/" }
The text was updated successfully, but these errors were encountered:
Fixed in #49
Sorry, something went wrong.
No branches or pull requests
Currently when serializing an RPDE feed with an empty page the
items
key is blank.Example code:
Expected response:
Actual response:
The text was updated successfully, but these errors were encountered: