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
This works
curl -v \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer $GH_ENTERPRISE_TOKEN" \ https://$GH_HOST/api/v3/search/issues\?q\=repo:$REPO_NAME+state:open\&per_page=30\&page=
This does not
from ghapi.all import * api = GhApi(<token etc..>) paged(api.search.issues_and_pull_requests, q="repo:<REPO_NAME> state:open')
For debug log debug=print_summary
debug=print_summary
https://<HOST>/api/v3/search/issues?q=repo%3A<OWNER>%2F<REPO>+state%3Aopen&per_page=30&page=1
See : was replaced with %3A. This I think is what breaks the query, some uri/url encoding happening somewhere
The text was updated successfully, but these errors were encountered:
NB whitespace replaced with + was also not intuative, found this on some go forum and happened to work. But can't workaround the colon issue
Sorry, something went wrong.
No branches or pull requests
This works
This does not
For debug log
debug=print_summary
See : was replaced with %3A. This I think is what breaks the query, some uri/url encoding happening somewhere
The text was updated successfully, but these errors were encountered: