Allow unauthenticated requests to GraphQL API #4121
Replies: 7 comments 5 replies
-
Beta Was this translation helpful? Give feedback.
-
|
This would be neat! I have a small script (for a maintainer pushing changes to a contributor's pull request) that sticks to the REST API for exactly this reason. Dealing with authentication would add quite a bit of complexity; and it's just getting a few bits of already-public information (it's all there in the web page for the PR), so fundamentally authentication shouldn't be needed. |
Beta Was this translation helpful? Give feedback.
-
|
See also isaacs/github#972 |
Beta Was this translation helpful? Give feedback.
-
|
I have an editor plugin which checks for new assets via the releases REST API. There is a ton of data transmitted, and I could really lighten the load by using graphql because I really only need a small fraction of the data transmitted. (On a side note, I'd use ETag conditional requests if I could, but the editor's fetch API seems to suppress the ETag header from me. :( I don't want to add an authentication step just for making a query about the public releases data. |
Beta Was this translation helpful? Give feedback.
-
|
This would be really nice. I'm building a little LED contribution display. I want users of this device to be able to simply enter their Github username and get their data shown, as it would be a bit annoying (and possibly insecure) to fiddle with API tokens. Especially for publicly available data. Unfortunately, contribution data is unavailable using REST API, and GraphQL is much better for embedded devices. |
Beta Was this translation helpful? Give feedback.
-
|
That’s so unfair that GraphQL API requires authentication! 😭😭😭 |
Beta Was this translation helpful? Give feedback.
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
It's currently possible to do an unauthenticated requests to GitHub's REST API with 60 requests / hour limit.
But AFAIK currently it's not possible to do an unauthenticated requests to the GraphQL API. Please make this possible! Even with lower rate limit like 30 points / hour.
Beta Was this translation helpful? Give feedback.
All reactions