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
When making a request on a windows machine, the URL of the request is formatted incorrectly. Here's the request for GET user:
-----------REQUEST----------- GET https://uat-api.paylution.com/rest/v3/users%5Cusr-00000000-0000-0000-0000-000000000000 User-Agent: Hyperwallet Python SDK v1.3.0 Accept: application/json Content-Type: application/json Authorization: Basic {auth}
The request should look like this:
-----------REQUEST----------- GET https://uat-api.paylution.com/rest/v3/users/usr-00000000-0000-0000-0000-000000000000 User-Agent: Hyperwallet Python SDK v1.3.0 Accept: application/json Content-Type: application/json Authorization: Basic {auth}
The culprit is line 117 of api.py
response = self.apiClient.doGet( os.path.join('users', userToken) )
It should look like:
response = self.apiClient.doGet('users/' + userToken)
I would make a PR but this bug happens 54 times and is a part of most requests.
The text was updated successfully, but these errors were encountered:
This was fixed in 81e7b59
Sorry, something went wrong.
No branches or pull requests
When making a request on a windows machine, the URL of the request is formatted incorrectly. Here's the request for GET user:
The request should look like this:
The culprit is line 117 of api.py
It should look like:
response = self.apiClient.doGet('users/' + userToken)
I would make a PR but this bug happens 54 times and is a part of most requests.
The text was updated successfully, but these errors were encountered: