mirror of
https://github.com/yude-jp/yude.jp
synced 2025-10-13 19:58:36 +09:00
Fix page title @ /minecraft/players/[uuid]
This commit is contained in:
23
pages/api/PlayerName/[uuid].js
Normal file
23
pages/api/PlayerName/[uuid].js
Normal file
@@ -0,0 +1,23 @@
|
||||
// React
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import axios from 'axios';
|
||||
|
||||
export const getName = async (props) => {
|
||||
const uuid = props;
|
||||
return fetch('https://api.ashcon.app/mojang/v2/user/' + uuid);
|
||||
};
|
||||
|
||||
const Spotify = async (req, res) => {
|
||||
const { uuid } = req.query
|
||||
const response = await getName(uuid);
|
||||
const data = await response.json();
|
||||
if (response.status === 204 || response.status > 400) {
|
||||
return res.status(200).send("404");
|
||||
}
|
||||
const username = data.username;
|
||||
return res.status(200).json({
|
||||
username,
|
||||
});
|
||||
};
|
||||
|
||||
export default Spotify
|
Reference in New Issue
Block a user