usage-rights.vue 635 B

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