1
Fork 0
mirror of https://github.com/Quackster/Minerva.git synced 2025-06-29 21:07:45 +00:00

Update README.md

This commit is contained in:
Quackster 2023-01-12 22:26:21 +10:00 committed by GitHub
parent e291089334
commit 06c482aca1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,6 +34,18 @@ The endpoints will be available:
``/habbo-imaging/badge-fill/{badge-code}.gif`` ``/habbo-imaging/badge-fill/{badge-code}.gif``
## How do I use it for my site?
You can proxy it.
An example in PHP:
```php
<?php
header ('Content-Type: image/png');
echo file_get_contents("http://127.0.0.1:8090/?" . $_SERVER['QUERY_STRING']);
?>
```
## Cloning this repository ## Cloning this repository
``` ```