usage-rights.vue 709 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div>
  3. <h1 class="primary--text">Usage Rights</h1>
  4. <p>
  5. Third party use of this open API is allowed with the following
  6. restrictions:
  7. </p>
  8. <ul>
  9. <li>
  10. <b>Attribution:</b> This project should be clearly attributed with
  11. either a link to this repo or a link to returnyoutubedislike.com.
  12. </li>
  13. <li>
  14. <b>Rate Limiting:</b> There are per client rate limits in place of 100
  15. per minute and 10'000 per day. This will return a 429 status code
  16. indicating that your application should back off.
  17. </li>
  18. </ul>
  19. </div>
  20. </template>
  21. <style scoped>
  22. li {
  23. margin-top: 0.5em;
  24. }
  25. b {
  26. font-weight: 900 !important;
  27. }
  28. </style>