This commit is contained in:
Kiera Affarantia 2024-03-08 18:21:53 +07:00
parent 661ec93e55
commit 06210df9ef
2 changed files with 2 additions and 2 deletions

View File

@ -18,6 +18,6 @@
<summary>Use the Nganime CORS proxy.</summary>
Append the source link for the media to `https://cors.nganime.my.id/`, like so:
```
https://cors.nganime.my.id/<SOURCE_LINK>
https://cors.nganime.my.id/proxy/m3u8/<SOURCE_LINK>
```
</details>

View File

@ -5,6 +5,6 @@ Nganime API utilizes a REST API which is wildly supported across multiple platfo
Exampe with NodeJS:
```js
const axios = require("axios");
await axios.get("https://api.anify.tv", { headers: {"Content-Type": "application/json" }});
await axios.get("https://api.nganime.my.id", { headers: {"Content-Type": "application/json" }});
```
Most of this documentation will feature examples in NodeJS and Python, but a lot of them can be easily replicated in other languages.