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 was archived by the owner on Feb 10, 2025. It is now read-only.
This function encodes the query string portion of the call to an Ethos endpoint. For query strings that begin with "?criteria=" it encodes everything after the equals (=) sign; for all other queries, the entire string is encoded.
Encoding the entire query string causes the call to return a 404 - "Resource owner not found for the requested resource" error.
A solution would be to encode all query strings after the equals (=) sign. If I find the time, I'll try to submit a working function.
integration-sdk-csharp/Ellucian.Ethos.Integration/Client/Proxy/EthosFilterQueryClient.cs
Line 1496 in 531987f
This function encodes the query string portion of the call to an Ethos endpoint. For query strings that begin with "?criteria=" it encodes everything after the equals (=) sign; for all other queries, the entire string is encoded.
Encoding the entire query string causes the call to return a 404 - "Resource owner not found for the requested resource" error.
A solution would be to encode all query strings after the equals (=) sign. If I find the time, I'll try to submit a working function.