By looking at GitHub Gist API, I understood that it is possible to create the Gist create for anonymous users without any API keys/authentication. Is it so?
I could not find answers to following questions:
- Are there any restrictions (number of gists) to be created etc?
- Is there any example that I can post the code from a form text input field to create a gist? I could not find any.
Thanks for any information about this.
Yes.
From Github API V3 Documentation:
For creating a gist, you can send a
POST
request as follows:Here's an example I made:
Refer to the documentation for more information.