this post was submitted on 28 Dec 2023
10 points (100.0% liked)

Web Development

3431 readers
1 users here now

Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development

What is web development?

Web development is the process of creating websites or web applications

Rules/Guidelines

Related Communities

Wormhole

Some webdev blogsNot sure what to post in here? Want some web development related things to read?

Heres a couple blogs that have web development related content

CreditsIcon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 1 year ago
MODERATORS
 

Hey devs, I am working on a project that requires restricting a fastapi from public access, but data generated from API needs to be made available to clients. So, came up with this workflow, what do you all suggest?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 3 points 9 months ago (1 children)

I suppose this makes sense (and is a quick-and-easy instant middleware) if you're using Firebase for authentication & authorization. Otherwise you're just obfuscating your original API which is generally pointless if someone really wants your data.

[โ€“] alexdeathway 1 points 9 months ago

if you're using Firebase for authentication & authorization. Otherwise you're just obfuscating your original API which is generally pointless if someone really wants your data.

Haven't used Firebase yet. So, have to look into how auth works there.