-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
[BUG]: Repos[owner][repo].Issues.Comments[comment_id].GetAsync()
always throws
#117
Comments
👋 Hi! Thank you for this contribution! Just to let you know, our GitHub SDK team does a round of issue and PR reviews twice a week, every Monday and Friday! We have a process in place for prioritizing and responding to your input. Because you are a part of this community please feel free to comment, add to, or pick up any issues/PRs that are labeled with |
This is interesting! It's due to an issue in our specification. What's going on is that The offending integer definition is located at
The offending JSON schema looks like: "comment-id": {
"name": "comment_id",
"description": "The unique identifier of the comment.",
"in": "path",
"required": true,
"schema": {
"type": "integer"
}
}, and it resides in github/rest-api-description. This is something we'll have to fix on our backend before the changes can percolate through to the generator. |
Thank you so much, but how can I track when this happens? Also, there have historically been issues between |
For example, every place that references an issue or pull request by
They're all over the place... /cc @kfcampbell and @nickfloyd |
Circling back around on this. In our data model there are two ids representing an issue for instance. One not scoped, which is Are you seeing an issue with the scoped id? I had a look at the DB schema on the back end, I definitely could've missed it but I didn't see instances where these were longs. If it is a problem then we'll need to do another sweep on Let me know what you are seeing if you get the chance, and sorry for the trouble again. |
What happened?
When I attempt to perform the following REST call using the SDK client, it throws an error:
The error I'm seeing is as follows:
However, if I run the following code-to manually use an
HttpClient
outside the library (it works!):The expected JSON payload is as follows:
Click to expand JSON
Versions
GitHub.Octokit.SDK
v0.0.26Code of Conduct
The text was updated successfully, but these errors were encountered: