>  기사  >  웹 프론트엔드  >  Pocketbase pb_hooks - 사용자 인증 확인

Pocketbase pb_hooks - 사용자 인증 확인

PHPz
PHPz원래의
2024-08-10 06:39:33466검색

Pocketbase pb_hooks - checking user authentication

pocketbase에 대한 문서는 pb_hooks를 사용할 때 인증된 사용자를 확인하는 방법에 대해만큼 명확하지 않습니다.

알고 보니 정말간단

문서:

https://pocketbase.io/docs/js-routing/#sending-request-to-custom-routes-using-the-sdks

https://pocketbase.io/jsvm/functions/_apis.requireAdminOrRecordAuth.html

예 :

// main.pb.js
// This is a simple GET route, that is protected
routerAdd("GET", "/private", (c) => {
    const data = { 
        message : "This can only be accessed if you are logged in"
    }
    return c.json(200, data)
    // Adding the $apis.requireAdminOrRecordAuth() argument, ensures the route is protected unless the user is logged in.
}, $apis.requireAdminOrRecordAuth());


// This is a simple GET route, that is public
routerAdd("GET", "/public", (c) => {
    const data = { 
        message : "This can be be accessed by public"
    }
    return c.json(200, data)
});

그런 다음 포켓베이스를 사용하여 경로를 호출하세요

// 
let fetchData = async () => {
    let resp = await pocketBaseClient.pb.send("/private", {
    });
    console.log(resp)
}

위 내용은 Pocketbase pb_hooks - 사용자 인증 확인의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.