You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CONTRIBUTING.md 4.6 KiB

7 years ago
7 years ago
7 years ago
7 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Contributing to public-apis
  2. > While the masses of pull requests and community involvement is appreciated, some pull requests have been specifically
  3. opened to market company APIs that offer paid solutions. This API list is not a marketing tool, but a tool to help the
  4. community build applications and use free, public APIs quickly and easily. Pull requests that are identified as marketing attempts will not be accepted.
  5. >
  6. > Please make sure the API you want to add has a full free access or at least a free tier before submitting.
  7. >
  8. > Thanks for understanding! :)
  9. ## Formatting
  10. Current API entry format:
  11. | API | Description | Auth | HTTPS | CORS |
  12. | --- | --- | --- | --- | --- |
  13. | API Title(Link to API documentation) | Description of API | Does this API require authentication? * | Does the API support HTTPS? | Does the API support [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)? * |
  14. Example entry:
  15. ```
  16. | [NASA](https://api.nasa.gov) | NASA data, including imagery | No | Yes | Yes |
  17. ```
  18. \* Currently, the only accepted inputs for the `Auth` field are as follows:
  19. * `OAuth` - _the API supports OAuth_
  20. * `apiKey` - _the API uses a private key string/token for authentication - try and use the correct parameter_
  21. * `X-Mashape-Key` - _the name of the header which may need to be sent_
  22. * `No` - _the API requires no authentication to run_
  23. \* Currently, the only accepted inputs for the `CORS` field are as follows:
  24. * `Yes` - _the API supports CORS_
  25. * `No` - _the API does not support CORS_
  26. * `Unknown` - _it is unknown if the API supports CORS_
  27. _Without proper [CORS configuration](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) an API will only be usable server side._
  28. Please continue to follow the alphabetical ordering that is in place per section. Each table column should be padded with one space on either side.
  29. If an API seems to fall into multiple categories, please place the listing within the section most in line with the services offered through the API. For example, the Instagram API is listed under `Social` since it is mainly a social network, even though it could also apply to `Photography`.
  30. ## Pull Request
  31. After you've created a branch on your fork with your changes, it's time to [make a pull request][pr-link]!
  32. Once you’ve submitted a pull request, the collaborators can review your proposed changes and decide whether or not to incorporate (pull in) your changes.
  33. ### Pull Request Pro Tips
  34. * [Fork][fork-link] the repository and [clone][clone-link] it locally.
  35. Connect your local repository to the original `upstream` repository by adding it as a [remote][remote-link].
  36. Pull in changes from `upstream` often so that you stay up to date and so when you submit your pull request,
  37. merge conflicts will be less likely. See more detailed instructions [here][syncing-link].
  38. * Create a [branch][branch-link] for your edits.
  39. * Contribute in the style of the project as outlined above. This makes it easier for the collaborators to merge
  40. and for others to understand and maintain in the future.
  41. * Please make sure you squash all commits together before opening a pull request. If your pull request requires changes upon review, please be sure to squash all additional commits as well. [This wiki page][squash-link] outlines the squash process.
  42. ### Open Pull Requests
  43. Once you’ve opened a pull request, a discussion will start around your proposed changes.
  44. Other contributors and users may chime in, but ultimately the decision is made by the collaborators.
  45. During the discussion, you may be asked to make some changes to your pull request.
  46. If so, add more commits to your branch and push them – they will automatically go into the existing pull request!
  47. Opening a pull request will trigger a Travis CI build to check the validity of all links in the project. After the build completes, **please ensure that the build has passed**. If the build did not pass, please view the Travis CI log and correct any errors that were found in your contribution.
  48. Thanks for being a part of this project, and we look forward to hearing from you soon!
  49. [branch-link]: <http://guides.github.com/introduction/flow/>
  50. [clone-link]: <https://help.github.com/articles/cloning-a-repository/>
  51. [fork-link]: <http://guides.github.com/activities/forking/>
  52. [oauth-link]: <https://en.wikipedia.org/wiki/OAuth>
  53. [pr-link]: <https://help.github.com/articles/creating-a-pull-request/>
  54. [remote-link]: <https://help.github.com/articles/configuring-a-remote-for-a-fork/>
  55. [syncing-link]: <https://help.github.com/articles/syncing-a-fork>
  56. [squash-link]: <https://github.com/todotxt/todo.txt-android/wiki/Squash-All-Commits-Related-to-a-Single-Issue-into-a-Single-Commit>