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
According to the OData specification $metadata urls should work without trailing '/'. They may also work with trailing slash.
$metadata
OData services expose their entity model according to OData-CSDL at the metadata URL, formed by appending $metadata to the service root URL
OData-CSDL
Example 5: Metadata document URL
http://host/service/$metadata
OData services MAY expose their entity model as a service, according to [OData-CSDL], by appending a trailing slash (/) to the metadata document URL.
Example 6: Metadata service root URL
http://host/service/$metadata/
Olingo Odata services for example do not have the trailing '/' in their $metadata url.
I forked your repo and fixed that. I did not fix the unit test yet. Do you want a pull request?
The text was updated successfully, but these errors were encountered:
patch odata $metadata (cf. tuomur/python-odata#22)
ea94056
Hotfix :: OData connector (#84)
1d76ffd
* patch odata $metadata (cf. tuomur/python-odata#22) * add test
No branches or pull requests
According to the OData specification
$metadata
urls should work without trailing '/'. They may also work with trailing slash.4.1 Addressing the Model for a Service
OData services expose their entity
model according to
OData-CSDL
at the metadata URL, formed byappending
$metadata
to the service root URLExample 5: Metadata document URL
OData services MAY expose their entity model
as a service, according to [OData-CSDL], by appending a trailing slash (/) to the metadata document URL.
Example 6: Metadata service root URL
Olingo Odata services for example do not have the trailing '/' in their $metadata url.
I forked your repo and fixed that. I did not fix the unit test yet. Do you want a pull request?
Fixes:
The text was updated successfully, but these errors were encountered: