APIパスの問題・デバッグ用コメントアウトを修正

This commit is contained in:
Last2014 2025-08-01 19:53:41 +09:00
parent 844a9cd058
commit a2576f961b
4 changed files with 6 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "notice-uwuzu", "name": "notice-uwuzu",
"version": "v7.0.2(LTS)@uwuzu1.5.4", "version": "v7.1(LTS)@uwuzu1.5.4",
"description": "Notice Bot for uwuzu", "description": "Notice Bot for uwuzu",
"main": "dist/main.js", "main": "dist/main.js",
"scripts": { "scripts": {

View File

@ -2,7 +2,7 @@ import { ueuse } from "types/types.js";
import config from "../../config.js"; import config from "../../config.js";
export default async function Follow(data: ueuse) { export default async function Follow(data: ueuse) {
const followReq = await fetch(`https://${config.uwuzu.host}/api/users/follow/`, { const followReq = await fetch(`https://${config.uwuzu.host}/api/users/follow`, {
method: "POST", method: "POST",
body: JSON.stringify({ body: JSON.stringify({
token: config.uwuzu.apiToken, token: config.uwuzu.apiToken,

View File

@ -2,7 +2,7 @@ import { ueuse } from "types/types.js";
import config from "../../config.js"; import config from "../../config.js";
export default async function UnFollow(data: ueuse) { export default async function UnFollow(data: ueuse) {
const unfollowReq = await fetch(`https://${config.uwuzu.host}/api/users/unfollow/`, { const unfollowReq = await fetch(`https://${config.uwuzu.host}/api/users/unfollow`, {
method: "POST", method: "POST",
body: JSON.stringify({ body: JSON.stringify({
token: config.uwuzu.apiToken, token: config.uwuzu.apiToken,
@ -14,7 +14,7 @@ export default async function UnFollow(data: ueuse) {
console.log("フォロー解除: ", unfollowRes); console.log("フォロー解除: ", unfollowRes);
const noticeReq = await fetch(`https://${config.uwuzu.host}/api/ueuse/create/`, { const noticeReq = await fetch(`https://${config.uwuzu.host}/api/ueuse/create`, {
method: "POST", method: "POST",
body: JSON.stringify({ body: JSON.stringify({
token: config.uwuzu.apiToken, token: config.uwuzu.apiToken,

View File

@ -476,8 +476,7 @@ async function event(earthquakeInfo: any): Promise<void> {
} }
async function ueuse(text: string) { async function ueuse(text: string) {
console.log(text); const res = await fetch(`https://${config.uwuzu.host}/api/ueuse/create`, {
/*const res = await fetch(`https://${config.uwuzu.host}/api/ueuse/create/`, {
method: "POST", method: "POST",
body: JSON.stringify({ body: JSON.stringify({
token: config.uwuzu.apiToken, token: config.uwuzu.apiToken,
@ -487,7 +486,7 @@ async function ueuse(text: string) {
const resData = await res.json(); const resData = await res.json();
console.log(`地震情報投稿:${JSON.stringify(resData)}`);*/ console.log(`地震情報投稿:${JSON.stringify(resData)}`);
} }
export default function earthquakeNotice(): void { export default function earthquakeNotice(): void {