From 35d8610c009ab1e577e937660b8d4cb4d0acf65f Mon Sep 17 00:00:00 2001 From: Kai DeLorenzo Date: Wed, 26 Jun 2024 17:01:25 +0000 Subject: [PATCH] Update packageHttp.md --- docs/packages/packageHttp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/packages/packageHttp.md b/docs/packages/packageHttp.md index 98491d14..d6a3bc3c 100644 --- a/docs/packages/packageHttp.md +++ b/docs/packages/packageHttp.md @@ -2,12 +2,12 @@ Package http is the main way for a plugin to make web requests, and is likely a package you will always need. It offers several ways to make web requests as well as websocket connections. -Before you can use http you need to register it in your plugin config. See [Packages](_blank). +Before you can use http you need to register it in your plugin config. See [Packages](/app/src/main/java/com/futo/platformplayer/engine/packages). ## Basic Info Underneath the http package by default exist two web clients. An authenticated client and a unauthenticated client. The authenticated client has will apply headers and cookies if the user is logged in with your plugin. -See [Plugin Authentication](_blank). +See [Plugin Authentication](/docs/Authentication.md). These two clients are always available even when the user is not logged in, meaning it behaves similar to the unauthenticated client and can safely use it either way. >:warning: **Requests are synchronous**