Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitrii Selivanov <selivano.d@gmail.com>2022-01-08 14:53:34 +0300
committerGitHub <noreply@github.com>2022-01-08 14:53:34 +0300
commitad62f9c7502bfa31f4842262d478b1accc51d762 (patch)
tree5b5d4c9b20e76a7ecf78f522ea74575a81aa8754
parent0ce3a8dd07835b13df2c947acf1016e949b9a639 (diff)
parent406c33f9b3ac3f4037b92a2ed7102ce821c3c0bc (diff)
Merge pull request #394 from GeneticallyModifiedAlex/patch-1
fixed typos/grammar in FAQ page
-rw-r--r--README.md4
-rw-r--r--Website/pages/faq.vue8
2 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md
index 4e5acad..fcd816b 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,8 @@ You can learn more at our website at: [returnyoutubedislike.com](https://www.ret
## API documentation
-Third party use of this open API is allowed with the following restrictions:
+Third-party use of this open API is allowed with the following restrictions:
+
- **Attribution**: This project should be clearly attributed with either a link to this repo or a link to [returnyoutubedislike.com](https://returnyoutubedislike.com/).
- **Rate Limiting**: 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.
@@ -63,6 +64,7 @@ Example to get votes of a given YouTube video ID:
}
```
+
None existing YouTube ID will return status code *404* "Not Found".
Wrong formed YouTube ID will return *400* "Bad Request".
diff --git a/Website/pages/faq.vue b/Website/pages/faq.vue
index d8c3210..fa87412 100644
--- a/Website/pages/faq.vue
+++ b/Website/pages/faq.vue
@@ -41,15 +41,17 @@ export default {
{
question: "Why isn't the dislike count updating?",
answer:
- "Right now video dislikes are cached and they aren't updated very frequently. It varies on video popularity but can take anywhere between a few hours and a few days days to update.",
+ "Right now video dislikes are cached and they aren't updated very frequently. It varies depending on a video's popularity but can take anywhere between a few hours and a few days days to update.",
},
{
question: "How does this work?",
answer:
- "The extension collects the video ID of the video you are watching, fetches the dislike (and other fields like views, likes etc) using our API. The extension then displays the dislike count and ratio on the page. If you dislike or like a video, that is recorded and sent to the database so an accurate dislike count can be extrapolated.",
+ "The extension collects the video ID of the video you are watching, fetches the dislike (and other fields like views, likes etc) using our API. The extension then displays the dislike count and ratio on the page. If you like or dislike a video, that is recorded and sent to the database so an accurate dislike count can be extrapolated.",
},
{
- question: "Can I share my dislke count with you?",
+
+ question:"Can I share my dislike count with you?",
+
answer:
"Coming soon. We are looking into using Oauth or a different read only API with a limited scope so creators can share their dislike counts verifiability. ",
},