Skip to content
View Shy2Shanna's full-sized avatar

Block or report Shy2Shanna

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Shy2Shanna/README.md
  • 👋 Hi, I’m @Shy2Shanna
  • 👀 I’m interested in virtual reality, gaming and development
  • 🌱 I’m currently learning web development
  • 💞️ I’m looking to collaborate on nothing
  • 📫 How to reach me on Discord (find it on my website)

Pinned Loading

  1. A file to use the Discord API (retri... A file to use the Discord API (retrieve user information via his ID (avatar, name, #, etc. ...)) and a 2-hour cache in a JSON. (Request via a Web Token otherwise response with error) | proof that it works: https://api-status.isnt.ovh
    1
    <?php
    2
    
                  
    3
    // Retrieve user data from API
    4
    function getDiscordUserData($discordId, $token) {
    5
        $url = "https://discord.com/api/v9/users/{$discordId}";
  2. A simple API for NextJS with cached ... A simple API for NextJS with cached file
    1
    const fs = require('fs');
    2
    const axios = require('axios');
    3
    
                  
    4
    const CACHE_DIR = './json';
    5
    const CACHE_FILE = 'discord.json';