APIパスの問題・デバッグ用コメントアウトを修正
This commit is contained in:
@@ -2,7 +2,7 @@ import { ueuse } from "types/types.js";
|
||||
import config from "../../config.js";
|
||||
|
||||
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",
|
||||
body: JSON.stringify({
|
||||
token: config.uwuzu.apiToken,
|
||||
|
||||
@@ -2,7 +2,7 @@ import { ueuse } from "types/types.js";
|
||||
import config from "../../config.js";
|
||||
|
||||
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",
|
||||
body: JSON.stringify({
|
||||
token: config.uwuzu.apiToken,
|
||||
@@ -14,7 +14,7 @@ export default async function UnFollow(data: ueuse) {
|
||||
|
||||
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",
|
||||
body: JSON.stringify({
|
||||
token: config.uwuzu.apiToken,
|
||||
|
||||
Reference in New Issue
Block a user